The following (mutation) code can be remove from coin-grinder here without encountering a test failure
if (curr_try >= TOTAL_TRIES) {
// Solution is not guaranteed to be optimal if `curr_try` hit TOTAL_TRIES
result.SetAlgoCompleted(false);
break;
}
This ought to be a similar test to Test BnB attempt limit (TOTAL_TRIES)