alloc test

This commit is contained in:
2025-03-13 10:02:54 -04:00
parent ed5ad738e3
commit efd956d614
11 changed files with 113 additions and 12 deletions

View File

@@ -1,8 +1,9 @@
use super::board_value::BoardValueMap;
use crate::repr::{Board, CoordPair, Piece, Winner};
use allocative::Allocative;
use std::sync::LazyLock;
#[derive(Clone, Debug)]
#[derive(Clone, Debug, Allocative)]
pub struct Move {
/// Coordinates (i, j) of the move (if it exists)
pub coord: Option<CoordPair>,