fix sort order
This commit is contained in:
parent
47d59464cd
commit
62aabe17f5
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ namespace Hanabi
|
|||
if (not right.second.has_value()) {
|
||||
return true;
|
||||
}
|
||||
return left.second.value() < right.second.value();
|
||||
return left.second.value() > right.second.value();
|
||||
});
|
||||
int max_rational_digit_len = std::accumulate(
|
||||
reasonable_actions.begin(), reasonable_actions.end(), 0, [](
|
||||
|
|
Loading…
Reference in a new issue