Skip to content

Commit

Permalink
chore: comment out reinforcement
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Aug 10, 2024
1 parent 5382f93 commit 1ccb5ac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crates/game-solver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
//! a great place to start.
pub mod game;
#[cfg(feature = "reinforcement")]
pub mod reinforcement;
// TODO: reinforcement
// #[cfg(feature = "reinforcement")]
// pub mod reinforcement;
pub mod transposition;

#[cfg(feature = "rayon")]
Expand Down Expand Up @@ -65,7 +66,7 @@ fn negamax<T: Game<Player = ZeroSumPlayer> + Clone + Eq + Hash>(
};
}

// for principal variation search
// for [principal variation search](https://www.chessprogramming.org/Principal_Variation_Search)
let mut first_child = true;

for m in &mut game.possible_moves() {
Expand Down

0 comments on commit 1ccb5ac

Please sign in to comment.