Skip to content

Commit c2b5ee2

Browse files
polgreentautschnig
authored andcommitted
Change "violated assumption" to "assumption" in trace
Assumptions aren't violated, they are adhered to
1 parent 2ee5a33 commit c2b5ee2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/goto-programs/goto_trace.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -524,8 +524,9 @@ void show_full_goto_trace(
524524
case goto_trace_stept::typet::ASSUME:
525525
if(!step.cond_value)
526526
{
527-
out << '\n';
528-
out << "Violated assumption:" << '\n';
527+
out << "\n";
528+
out << "Assumption:\n";
529+
529530
if(!step.pc->source_location.is_nil())
530531
out << " " << step.pc->source_location << '\n';
531532

0 commit comments

Comments
 (0)