wip burn-rl dqn example

This commit is contained in:
Henri Bourcereau 2025-07-08 21:58:15 +02:00
parent b98a135749
commit 354dcfd341
10 changed files with 224 additions and 20 deletions

View file

@ -1,7 +1,8 @@
pub mod burnrl;
pub mod strategy;
use store::{CheckerMove, Color, GameEvent, GameState, PlayerId, PointsRules, Stage, TurnStage};
pub use strategy::burn_dqn_strategy::{BurnDqnStrategy, create_burn_dqn_strategy};
pub use strategy::burn_dqn_strategy::{create_burn_dqn_strategy, BurnDqnStrategy};
pub use strategy::default::DefaultStrategy;
pub use strategy::dqn::DqnStrategy;
pub use strategy::erroneous_moves::ErroneousStrategy;