Skip to content

Commit f39fff2

Browse files
committed
Minor Change
1 parent d7a437c commit f39fff2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • liquidjava-verifier/src/main/java/liquidjava/diagnostics

liquidjava-verifier/src/main/java/liquidjava/diagnostics/DebugLog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static void counterexampleAssignments(Counterexample counterexample) {
135135
if (!enabled() || counterexample == null || counterexample.assignments().isEmpty()) {
136136
return;
137137
}
138-
System.out.println(SMT_TAG + " counterexample assignments:");
138+
System.out.println(SMT_TAG + " unfiltered counterexample assignments:");
139139
for (var assignment : counterexample.assignments()) {
140140
System.out.println(SMT_TAG + " " + assignment.first() + " = " + assignment.second());
141141
}

0 commit comments

Comments
 (0)