Skip to content

Commit

Permalink
show cursed/blessed dtw
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jul 23, 2024
1 parent 953c9c6 commit 4945d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antichess_tb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub unsafe fn probe_dtw(pos: &VariantPosition) -> Option<i32> {

match result {
0 => Some(dtw as i32),
1 => None, // cursed win/loss
1 => Some(dtw as i32), // cursed win/loss
2 => Some(0), // draw
error => {
warn!("antichess tb probe failed with error code {error}");
Expand Down

0 comments on commit 4945d35

Please sign in to comment.