add debug messages in tekker adjustment code

This commit is contained in:
Martin Michelsen
2023-11-18 23:11:59 -08:00
parent 7ab98f41da
commit 8d83b941d0
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ struct ProbabilityTable {
ItemT sample(PSOLFGEncryption& random_crypt) const {
if (this->count == 0) {
throw std::runtime_error("pop from empty probability table");
throw std::runtime_error("sample from empty probability table");
} else if (this->count == 1) {
return this->items[0];
} else {