summaryrefslogtreecommitdiff
path: root/examples/api/extract-new.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/api/extract-new.cpp')
-rw-r--r--examples/api/extract-new.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/api/extract-new.cpp b/examples/api/extract-new.cpp
index 0f0f8243a..705cdd90f 100644
--- a/examples/api/extract-new.cpp
+++ b/examples/api/extract-new.cpp
@@ -47,9 +47,9 @@ int main()
slv.assertFormula(eq);
Term eq2 = slv.mkTerm(EQUAL, x_31_31, x_0_0);
- cout << " Check validity assuming: " << eq2 << endl;
- cout << " Expect valid. " << endl;
- cout << " CVC4: " << slv.checkValidAssuming(eq2) << endl;
+ cout << " Check entailment assuming: " << eq2 << endl;
+ cout << " Expect ENTAILED. " << endl;
+ cout << " CVC4: " << slv.checkEntailed(eq2) << endl;
return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback