-
Notifications
You must be signed in to change notification settings - Fork 16
/
default.cfg
59 lines (46 loc) · 1.47 KB
/
default.cfg
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
# General-purpose settings.
color = false
verbose = true
[ABT]
# Whether to keep track of states in an index data structure
useStateIndex = false
# The number of trajectories to simulate per time step (0 => wait for timeout)
historiesPerStep = 0
# The maximum time to spend on each step, in milliseconds (0 => no time limit)
stepTimeout = 1000
# If this is set to "true", ABT will prune the tree after every step.
pruneEveryStep = false
# If this is set to "true", ABT will reset the tree instead of modifying it when
# changes occur.
resetOnChanges = false
# The minimum number of particles for the current belief state in a simulation.
# Extra particles will be resampled via a particle filter if the particle count
# for the *current* belief state drops below this number during simulation.
minParticleCount = 5000
# The maximum depth to search in the tree, relative to the current belief.
maximumDepth = 90
# True if the above horizon is relative to the initial belief, and false
# if it's relative to the current belief.
isAbsoluteHorizon = true
searchHeuristic = default()
searchStrategy = ucb(10.0)
estimator = mean()
[problem]
discountFactor = 0.95
mapPath = maps/map.txt
moveCost = 1
tagReward = 10
failedTagPenalty = 10
opponentStayProbability = 0.2
[changes]
hasChanges = false
changesPath = changes/mid-wall.txt
areDynamic = true
[simulation]
loadInitialPolicy = true
savePolicy = false
nSteps = 90
nRuns = 1
[ros]
# Path to the V-REP scene file
vrepScenePath = vrep_scenes/tag.ttt