-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cfg
More file actions
33 lines (29 loc) · 778 Bytes
/
test.cfg
File metadata and controls
33 lines (29 loc) · 778 Bytes
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
{
"tests":
{
"instantiate_every_run" : false,
"instantiate_every_maze" : false,
"mazes_per_factory" : 5,
"tests_per_maze" : 5,
},
"test_parameters":
{
"maze_width" : 20,
"maze_height" : 20,
"bot_start_timeout" : 100,
"bot_work_timeout" : 100,
"bot_package" : "bots",
"maze_factory_package" : "maize",
"tick_limit" : 5000,
"stuck_limit" : 50
},
"maze_factories":
[
"FullDFSMazeFactory",
"CircleMazeFactory",
"ScatterMazeFactory",
"RandomScatterMazeFactory",
"LineMazeFactory",
"EmptyMazeFactory"
]
}