Skip to content

Commit

Permalink
Bugfix: Do not always reportUnfinishedBacktranslation for execution
Browse files Browse the repository at this point in the history
  • Loading branch information
schuessf committed Feb 28, 2024
1 parent df723e0 commit 53c8dc5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,9 @@ assert checkCallStackSourceProgramExecution(mLogger,
final List<AtomicTraceElement<CACSLLocation>> checkedTranslatedATEs = checkForSubtreeInclusion(translatedATEs);
assert checkCallStackTarget(mLogger,
checkedTranslatedATEs) : "callstack broken after subtree inclusion reduction";
reportUnfinishedBacktranslation("The program execution was not completely translated back.");
if (mBacktranslationWarned) {
reportUnfinishedBacktranslation("The program execution was not completely translated back.");
}
return new CACSLProgramExecution(initialState, checkedTranslatedATEs, translatedProgramStates,
oldPE.isConcurrent());
}
Expand Down

0 comments on commit 53c8dc5

Please sign in to comment.