Skip to content

Commit

Permalink
Average iters 2100
Browse files Browse the repository at this point in the history
Min temp 0.2
  • Loading branch information
Viren6 committed Jan 18, 2025
1 parent 6854052 commit abcddd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datagen/src/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl<'a> DatagenThread<'a> {

temp *= 0.9;
if temp <= 0.2 {
temp = 0.0;
temp = 0.2;
}

let best_move = montyformat::chess::Move::from(u16::from(bm));
Expand Down

0 comments on commit abcddd3

Please sign in to comment.