Refactor based on clippy, move tt to search module and call iterative deepening from uci_go
This commit is contained in:
@@ -3,3 +3,9 @@ pub mod move_ordering;
|
||||
pub mod negamax;
|
||||
pub mod perft;
|
||||
pub mod quiescence;
|
||||
pub mod transposition_table;
|
||||
|
||||
pub const MAX_DEPTH: u8 = 4;
|
||||
pub const QUIESCENCE_DEPTH: u8 = 3;
|
||||
pub const MOVE_TIME: u128 = 1000;
|
||||
pub const MAX_TT_SIZE: u64 = 1000000;
|
||||
|
||||
Reference in New Issue
Block a user