summaryrefslogtreecommitdiff
path: root/src/strategy/minimax.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-08-21 08:32:35 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-08-21 08:32:35 +0200
commit74f593bb27b19c8d021918a46a6447a80e25f828 (patch)
tree8fe70a874bbf7506518d7356f0738fa297d6bca8 /src/strategy/minimax.rs
parente44b2a312a5ffa85933325b3b88c56de7143f710 (diff)
Tweaking config experimentally
Diffstat (limited to 'src/strategy/minimax.rs')
-rw-r--r--src/strategy/minimax.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/strategy/minimax.rs b/src/strategy/minimax.rs
index f65f770..5ddd928 100644
--- a/src/strategy/minimax.rs
+++ b/src/strategy/minimax.rs
@@ -21,13 +21,13 @@ pub struct ScoreConfig {
impl Default for ScoreConfig {
fn default() -> ScoreConfig {
ScoreConfig {
- max_health_weight: 1.,
- total_health_weight: 1.,
- points_weight: 0.,
+ max_health_weight: 100.,
+ total_health_weight: 10.,
+ points_weight: 1.,
victory_weight: 3000.,
- snowball_weight: 100.,
- bomb_weight: 100.,
- explore_exploit_weight: 10.,
+ snowball_weight: 10.,
+ bomb_weight: 0.,
+ explore_exploit_weight: 100.,
}
}
}