-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
38 lines (37 loc) · 1.19 KB
/
config.json
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
{
"_comment":"single simulation config",
"single_simulation_grid": [
[0, 0, 0, 0, 0, 3, 0, 0, 0, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 2, 1, 1, 1, 1, 2, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 2, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 2, 1, 0],
[0, 1, 2, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 4, 0, 0, 0, 0]
],
"number_of_tables": 5,
"number_of_waiters": 2,
"simulation_duration": 3600,
"arrival_rate": 0.003,
"__comment":"simulated annealing config",
"initial_temp":500,
"final_temp":0.01,
"alpha":0.95,
"max_iter":50,
"nights_per_layout":5,
"optimizer_grid": [
[0, 0, 0, 0, 0, 3, 0, 0, 0, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 4, 0, 0, 0, 0]
]
}