-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.properties
60 lines (42 loc) · 1.56 KB
/
default.properties
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
########################
# world related properties
########################
worldWidth = 512
worldHeight = 384
# the amount of food present
# values close and less to popSize bring life to competition
foodCount = 30
########################
# population properties
########################
# the amount of organisms per generation
popSize = 32
# the number of elite organisms
eliteCount = 4
# the maximum amount of mutations per organism per round
maxMutations = 6
########################
# organism properties
########################
# the maximum program size for each organism
progSize = 256
# the amount of registers available to each organism
registerCount = 24
# this was the old default value which allowed super-instant direction changes
#maxSteerForce = 10.0
# testing lower steer forces to discourage immediate direction setting
# 1.5 seems to be a good value
maxSteerForce = 2.5
# this influences the maximum movement speed of the organisms
maxSpeed = 4.0
# the int scale factor is used to scale up double values to integers
# when passed to an integer-only EvoVM register or to scale down
# output values back to doubles for further processing by the world.
# this value is very important, as it significantly influences a lot
# of the other scaling factors, like maxSteerForce and maxSpeed
intScaleFactor = 8192.0
########################
# radarsense properties
########################
# a good default value for fine beam control
radarSweepSpeedScaleFactor = 64.0