diff options
Diffstat (limited to 'engine/src')
| -rw-r--r-- | engine/src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/src/main.rs b/engine/src/main.rs index 245bd97..8e438fd 100644 --- a/engine/src/main.rs +++ b/engine/src/main.rs @@ -1,4 +1,8 @@ use engine::{current_evaluation, CheckersBitBoard, TranspositionTable}; +use mimalloc::MiMalloc; + +#[global_allocator] +static ALLOCATOR: MiMalloc = MiMalloc; const DEPTH: u8 = 18; |
