Skip to content

Commit

Permalink
cover the INSTRUCTION_LIMIT case
Browse files Browse the repository at this point in the history
  • Loading branch information
quickbeam123 committed Jan 8, 2025
1 parent 36a610c commit 0cc04da
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Shell/Statistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ void Statistics::print(std::ostream& out)
case Statistics::TIME_LIMIT:
out << "Time limit";
break;
case Statistics::INSTRUCTION_LIMIT:
out << "Instruction limit";
break;
case Statistics::MEMORY_LIMIT:
out << "Memory limit";
break;
Expand Down

0 comments on commit 0cc04da

Please sign in to comment.