forked from aashimasingh/Roomba-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.py
32 lines (26 loc) · 848 Bytes
/
options.py
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
total_time_to_clean = 100
time_to_move = 1
time_to_clean = 2
roomba_dirt_capacity = 60
numScenarios = 10
# dirtFile = "data/master_data.npy"
# dirtFile = 'data/2by2_10scenarios.npy'
# dirtFile = 'data/3by3_10scenarios.npy'
# dirtFile = 'data/4by4toy_10scenarios.npy'
# dirtFile = 'data/5by5floor10scenarios.npy'
# dirtFile = 'data/6by6floor10scenarios.npy'
# dirtFile = 'data/7by7floor10scenarios.npy'
dirtFile = 'data/7by7Handmade.npy'
# dirtFile = 'data/9by9_10scenarios.npy'
# dirtFile = 'data/small_floor10scenarios.npy'
subTourFile = dirtFile[:-4]
subTourFile = '7by7floor10scenarios'
charging_start_value = -2
charging_end_label = 900
average_plan_used = False
constant_vacuuming = True
visualizePath = False
visualizeVacumed = True
solverTimeLimit = 300
if average_plan_used == True:
numScenarios = 1