[board] Remove unused imports and const variables from zobrist.rs

This commit is contained in:
Eryn Wells 2025-06-08 17:17:05 -07:00
parent 5326c1ee6a
commit a7d42c6c1d

View file

@ -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;