-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestConfiguration.xml
46 lines (37 loc) · 2.53 KB
/
testConfiguration.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<list>
<SingleSimulation>
<Class type = "simulation" value = "simulator.simulation.ready.BoidsSimulation"/>
<Class type = "robot" value = "simulator.robot.BoidsRobotConfAlgA"/>
<Class type = "target" value = "simulator.target.CountTarget"/>
<Class type = "field" value = "simulator.field.DefaultField"/>
<ConstParam param="name" type="string" value="KOTLIN"/>
<ConstParam param = "resultFilePath" type = "string" value = "result.txt"/>
<RandomParam param="countAgent" type="int" min_val="100" max_val="1000"/>
<RandomParam param="percentGoodBoy" type="int" min_val="10" max_val="50"/>
<RandomParam param="percentEnemy" type="int" min_val="10" max_val="30"/>
<RandomParam param="activeDist" type="double" min_val="10" max_val="30"/>
<RandomParam param="criticalDist" type="double" min_val="1" max_val="5"/>
<RandomParam param="distBetweenRobot" type="double" min_val="1" max_val="15"/>
<RandomParam param="confidenceGoodBoy" type="double" min_val="0" max_val="1"/>
<RandomParam param="mu" type="double" min_val="0.25" max_val="1"/>
<RandomParam param="deltaW" type="double" min_val="0.0001" max_val="0.1"/>
</SingleSimulation>
<SingleSimulation>
<Class type = "simulation" value = "simulator.simulation.ready.BoidsSimulation"/>
<Class type = "robot" value = "simulator.robot.BoidsRobotConfAlgB"/>
<Class type = "target" value = "simulator.target.CountTarget"/>
<Class type = "field" value = "simulator.field.DefaultField"/>
<ConstParam param="name" type="string" value="KOTLIN"/>
<ConstParam param = "resultFilePath" type = "string" value = "result.txt"/>
<RandomParam param="countAgent" type="int" min_val="100" max_val="1000"/>
<RandomParam param="percentGoodBoy" type="int" min_val="10" max_val="50"/>
<RandomParam param="percentEnemy" type="int" min_val="10" max_val="30"/>
<RandomParam param="activeDist" type="double" min_val="10" max_val="30"/>
<RandomParam param="criticalDist" type="double" min_val="1" max_val="5"/>
<RandomParam param="distBetweenRobot" type="double" min_val="1" max_val="15"/>
<RandomParam param="confidenceGoodBoy" type="double" min_val="0" max_val="1"/>
<RandomParam param="mu" type="double" min_val="0.25" max_val="1"/>
<RandomParam param="deltaW" type="double" min_val="0.0001" max_val="0.1"/>
</SingleSimulation>
</list>