aboutsummaryrefslogtreecommitdiff
path: root/src/grossmeister/mod.rs
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2023-08-22 01:12:25 +0300
committereug-vs <eugene@eug-vs.xyz>2023-08-22 01:12:54 +0300
commitbc599d145a8d3a5e69128bc9e702ac7a32d73a4c (patch)
treef3c5f07a6b260ffc8bbee51c4e05c8184bb4f992 /src/grossmeister/mod.rs
parent67247cb4f2985de052c1edb8b7a831c7df241719 (diff)
downloadchessnost-bc599d145a8d3a5e69128bc9e702ac7a32d73a4c.tar.gz
fix: typing in benchmark
Diffstat (limited to 'src/grossmeister/mod.rs')
-rw-r--r--src/grossmeister/mod.rs4
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.