Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dede1751 committed Feb 1, 2023
1 parent 339cb32 commit ec34fae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ human player should be able to hold out and enjoy a good game.
* Null Move Pruning
* Late Move Reductions
* Mate Distance Pruning
* Delta/SEE pruning in QS
* Delta/SEE/Futility pruning in QS

Of course it is still lacking many optimizations, most notably:

Expand Down
2 changes: 1 addition & 1 deletion src/zobrist.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::{board::*, castle::*, piece::*, square::*, tables::*};

/// Zobrist hash, an incremental hash for a board position using random keys (in constants mod)
///
///
/// Didactic note:
/// Zobrist hashes for two identical positions are the same ONLY if obtained through any combination
/// of toggles from the SAME state. Given position A and B, if they both lead to C through m1..mn,
Expand Down

0 comments on commit ec34fae

Please sign in to comment.