-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulation-config.json
More file actions
71 lines (71 loc) · 1.23 KB
/
Copy pathsimulation-config.json
File metadata and controls
71 lines (71 loc) · 1.23 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"fastforward": true,
"headless": false,
"numberOfGenes": 24,
"mutationEnabled": true,
"mutationRate": 0.025,
"mutationAddConnectionRate": 0.01,
"mutationRemoveConnectionRate": 0.01,
"snapshotInterval": 1,
"maxPopulation": 150,
"stepsPerGeneration": 120,
"maxGenerations": 20000,
"outputDir": "output",
"survivalCriteria": [
{
"x1": 0,
"y1": 0,
"x2": 100,
"y2": 100
},
{
"x1": 700,
"y1": 0,
"x2": 800,
"y2": 100
},
{
"x1": 0,
"y1": 700,
"x2": 100,
"y2": 800
},
{
"x1": 700,
"y1": 700,
"x2": 800,
"y2": 800
}
],
"initialObstacles": [
{
"name": "cross1a",
"orientation": "HORIZONTAL",
"fixedCoord": 250,
"start": 150,
"end": 650
},
{
"name": "cross2",
"orientation": "HORIZONTAL",
"fixedCoord": 550,
"start": 150,
"end": 650
},
{
"name": "cross3",
"orientation": "VERTICAL",
"fixedCoord": 250,
"start": 150,
"end": 650
},
{
"name": "cross4",
"orientation": "VERTICAL",
"fixedCoord": 550,
"start": 150,
"end": 650
}
],
"generationUpdates": []
}