diff options
author | eug-vs <eugene@eug-vs.xyz> | 2023-08-22 01:12:25 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2023-08-22 01:12:54 +0300 |
commit | bc599d145a8d3a5e69128bc9e702ac7a32d73a4c (patch) | |
tree | f3c5f07a6b260ffc8bbee51c4e05c8184bb4f992 /src | |
parent | 67247cb4f2985de052c1edb8b7a831c7df241719 (diff) | |
download | chessnost-bc599d145a8d3a5e69128bc9e702ac7a32d73a4c.tar.gz |
fix: typing in benchmark
Diffstat (limited to 'src')
-rw-r--r-- | src/grossmeister/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grossmeister/mod.rs b/src/grossmeister/mod.rs index 3473d1e..67b20bd 100644 --- a/src/grossmeister/mod.rs +++ b/src/grossmeister/mod.rs @@ -1,6 +1,6 @@ use std::sync::{atomic::AtomicBool, Arc}; -use crate::{board::Board, moves::Move}; +use crate::board::Board; use self::ttable::{TranspositionTable, TTABLE_SIZE}; mod ttable; @@ -15,7 +15,7 @@ mod UCI; pub struct Grossmeister { /// GM's internal board representation /// This is usually a copy of a real board - board: Board, + pub board: Board, /// Transposition table is a cache of all positions that Grossmeister /// has seen and evaluated. |