Skip to content

Commit

Permalink
cover one more INSTRUCTION_LIMIT case
Browse files Browse the repository at this point in the history
  • Loading branch information
quickbeam123 committed Jan 8, 2025
1 parent 0cc04da commit 743ab47
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Shell/UIHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,14 @@ void UIHelper::outputResult(std::ostream& out)
addCommentSignForSZS(out);
out << "Time limit reached!\n";
break;
case Statistics::INSTRUCTION_LIMIT:
if(env.options->outputMode() == Options::Output::SMTCOMP){
out << "unknown" << endl;
return;
}
addCommentSignForSZS(out);
out << "Instruction limit reached!\n";
break;
case Statistics::MEMORY_LIMIT:
if(env.options->outputMode() == Options::Output::SMTCOMP){
out << "unknown" << endl;
Expand Down

0 comments on commit 743ab47

Please sign in to comment.