bot : erroneous strategy

This commit is contained in:
Henri Bourcereau 2025-03-18 21:19:57 +01:00
parent ab770f3a34
commit 27fc08c47d
6 changed files with 118 additions and 47 deletions

View file

@ -2,6 +2,7 @@ mod strategy;
use store::{CheckerMove, Color, GameEvent, GameState, PlayerId, PointsRules, Stage, TurnStage};
pub use strategy::default::DefaultStrategy;
pub use strategy::erroneous_moves::ErroneousStrategy;
pub use strategy::stable_baselines3::StableBaselines3Strategy;
pub trait BotStrategy: std::fmt::Debug {