summaryrefslogtreecommitdiff
path: root/examples/api/extract.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/api/extract.cpp')
-rw-r--r--examples/api/extract.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/api/extract.cpp b/examples/api/extract.cpp
index a008ec718..e2558df28 100644
--- a/examples/api/extract.cpp
+++ b/examples/api/extract.cpp
@@ -48,8 +48,8 @@ int main() {
Expr eq2 = em.mkExpr(kind::EQUAL, x_31_31, x_0_0);
cout << " Querying: " << eq2 << endl;
- cout << " Expect valid. " << endl;
- cout << " CVC4: " << smt.query(eq2) << endl;
+ cout << " Expect entailed. " << endl;
+ cout << " CVC4: " << smt.checkEntailed(eq2) << endl;
return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback