Skip to content

Commit

Permalink
assert scores are wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Nov 3, 2024
1 parent c8048a9 commit add765e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion research/src/bin/replay_encounters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ impl DeviationHistogram {
Score::WIN => self.buckets[bucket].wins += 1,
Score::DRAW => self.buckets[bucket].draws += 1,
Score::LOSS => self.buckets[bucket].losses += 1,
_ => {}
_ => panic!("bad score {score:?}"),
}
}
}
Expand Down

0 comments on commit add765e

Please sign in to comment.