diff options
| author | Micha White <botahamec@outlook.com> | 2023-12-21 16:33:09 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-12-21 16:33:09 -0500 |
| commit | 207bafde1fa2468d666c7ac894eebee1cf95bed2 (patch) | |
| tree | 454dcd095a5ad0d5230799055da92bb35e43db3d /engine/src/main.rs | |
| parent | e4be2bdb76842e34503c2a408ab7cffdc30d4ec2 (diff) | |
Engine API
Diffstat (limited to 'engine/src/main.rs')
| -rw-r--r-- | engine/src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/src/main.rs b/engine/src/main.rs index 8e438fd..afc132f 100644 --- a/engine/src/main.rs +++ b/engine/src/main.rs @@ -1,4 +1,4 @@ -use engine::{current_evaluation, CheckersBitBoard, TranspositionTable}; +use engine::{CheckersBitBoard, TranspositionTable}; use mimalloc::MiMalloc; #[global_allocator] @@ -7,7 +7,7 @@ static ALLOCATOR: MiMalloc = MiMalloc; const DEPTH: u8 = 18; fn main() { - let board = CheckersBitBoard::starting_position(); - let mut table = TranspositionTable::new(50_000); - println!("{}", current_evaluation(DEPTH, board, table.mut_ref())); + //let board = CheckersBitBoard::starting_position(); + //let mut table = TranspositionTable::new(50_000); + //println!("{}", current_evaluation(DEPTH, board, table.get_ref())); } |
