Skip to content

Commit bccf5ac

Browse files
committed
make assumption output in trace reachable
Assumptions are never violated, instead they restrict the search space for non-det values
1 parent 8f441b2 commit bccf5ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goto-programs/goto_trace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ void show_goto_trace(
278278
break;
279279

280280
case goto_trace_stept::typet::ASSUME:
281-
if(!step.cond_value)
281+
if(step.cond_value)
282282
{
283283
out << "\n";
284284
out << "Assumption:" << "\n";

0 commit comments

Comments
 (0)