summaryrefslogtreecommitdiff
path: root/src/bin/explore-config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/explore-config.rs')
-rw-r--r--src/bin/explore-config.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/explore-config.rs b/src/bin/explore-config.rs
index 10f75eb..5fb599a 100644
--- a/src/bin/explore-config.rs
+++ b/src/bin/explore-config.rs
@@ -11,16 +11,16 @@ fn main() {
json::read_state_from_json_file(&Path::new(&format!("./tests/example-state.json")))
.unwrap(),
);
- let depth = 100;
+ let depth = 1000;
let configs = ScoreConfigTrials {
max_health_weight: vec![50., 150.],
total_health_weight: vec![5., 20.],
- points_weight: vec![0., 1.],
- victory_weight: vec![3000.],
+ points_weight: vec![1.],
+ victory_weight: vec![3000., 3500., 4000., 4500., 5000., 5500., 6000., 7000.],
snowball_weight: vec![10.],
- bomb_weight: vec![0., 10., 100., 1000., 10000.],
- explore_exploit_weight: vec![5., 100.],
+ bomb_weight: vec![0.],
+ explore_exploit_weight: vec![10., 500.],
}
.reify();