summaryrefslogtreecommitdiff
path: root/cli/src/eval.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/eval.rs')
-rw-r--r--cli/src/eval.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/src/eval.rs b/cli/src/eval.rs
deleted file mode 100644
index 8076af1..0000000
--- a/cli/src/eval.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-use ai::{CheckersBitBoard, Move};
-pub fn eval(depth: usize) -> f32 {
- ai::eval_multithreaded(depth, 0.0, 1.0, CheckersBitBoard::starting_position())
-}
-
-pub fn best_move(depth: usize) -> Move {
- ai::best_move(depth, CheckersBitBoard::starting_position())
-}