1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Changes equivocal semantics.

This commit is contained in:
Thomas Harte
2018-02-11 20:32:21 -05:00
parent 9960121b08
commit dcf313a833
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -23,6 +23,8 @@ void ConfidenceCounter::add_miss() {
}
void ConfidenceCounter::add_equivocal() {
hits_++;
misses_++;
if(hits_ > misses_) {
hits_++;
misses_++;
}
}