summaryrefslogtreecommitdiff
path: root/src/strategy.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-07-08 22:31:41 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-07-08 22:31:41 +0200
commit770f14609849552d965b4e9101bfb5c0870c08d0 (patch)
tree170ebb08b86ccc5027752f37bf0dda4be516a2b7 /src/strategy.rs
parent2d4647a618234ef496899d875f75d57b5af1a6e5 (diff)
Command filtering to avoid wasting the selects
Diffstat (limited to 'src/strategy.rs')
-rw-r--r--src/strategy.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/strategy.rs b/src/strategy.rs
index 9c79d60..b6069a1 100644
--- a/src/strategy.rs
+++ b/src/strategy.rs
@@ -1,4 +1,5 @@
-mod mcts;
-mod minimax;
+//mod mcts;
+//pub use mcts::{choose_move, Node};
-pub use mcts::{choose_move, Node};
+mod minimax;
+pub use minimax::{choose_move, Node};