We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a437c commit f39fff2Copy full SHA for f39fff2
1 file changed
liquidjava-verifier/src/main/java/liquidjava/diagnostics/DebugLog.java
@@ -135,7 +135,7 @@ public static void counterexampleAssignments(Counterexample counterexample) {
135
if (!enabled() || counterexample == null || counterexample.assignments().isEmpty()) {
136
return;
137
}
138
- System.out.println(SMT_TAG + " counterexample assignments:");
+ System.out.println(SMT_TAG + " unfiltered counterexample assignments:");
139
for (var assignment : counterexample.assignments()) {
140
System.out.println(SMT_TAG + " " + assignment.first() + " = " + assignment.second());
141
0 commit comments