[board] Remove unused imports and const variables from zobrist.rs
This commit is contained in:
parent
5326c1ee6a
commit
a7d42c6c1d
1 changed files with 1 additions and 2 deletions
|
@ -10,11 +10,10 @@
|
|||
//! [1]: https://www.chessprogramming.org/Zobrist_Hashing
|
||||
|
||||
use crate::{castle, Board};
|
||||
use chessfriend_core::{random::RandomNumberGenerator, Color, File, Piece, Shape, Square, Wing};
|
||||
use chessfriend_core::{random::RandomNumberGenerator, Color, File, Piece, Shape, Square};
|
||||
use rand::Fill;
|
||||
use std::sync::Arc;
|
||||
|
||||
const NUM_SQUARE_PIECE_VALUES: usize = Shape::NUM * Color::NUM * Square::NUM;
|
||||
const NUM_CASTLING_RIGHTS_VALUES: usize = 16;
|
||||
|
||||
type HashValue = u64;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue