You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 15, 2023. It is now read-only.
I noticed that combined rounds don't check which solves were entered, all they require is that the very first time be entered. Here's the relevant code from WorkbookValidator:
Longresult;
if (round.isCombined() && resultIdx > 1) {
result = CellParser.parseOptionalSingleTime(resultCell, resultFormat, event, aFormulaEvaluator);
}
else {
result = CellParser.parseMandatorySingleTime(resultCell, resultFormat, event, aFormulaEvaluator);
}
results[resultIdx - 1] = result;
Ideally, we'd assert that all the incomplete rows have the same number of solves entered, and that there aren't any gaps in that range.
The text was updated successfully, but these errors were encountered:
I noticed that combined rounds don't check which solves were entered, all they require is that the very first time be entered. Here's the relevant code from WorkbookValidator:
Ideally, we'd assert that all the incomplete rows have the same number of solves entered, and that there aren't any gaps in that range.
The text was updated successfully, but these errors were encountered: