summaryrefslogtreecommitdiff
path: root/src/strategy/minimax.rs
diff options
context:
space:
mode:
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.,
}
}
}