summaryrefslogtreecommitdiff
path: root/examples/SimpleVC.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/SimpleVC.py')
-rwxr-xr-xexamples/SimpleVC.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/SimpleVC.py b/examples/SimpleVC.py
index 4c21d35c0..5550974c9 100755
--- a/examples/SimpleVC.py
+++ b/examples/SimpleVC.py
@@ -53,9 +53,9 @@ def main():
formula = Expr(em.mkExpr(CVC4.AND, x_positive, y_positive)).impExpr(Expr(twox_plus_y_geq_3))
- print("Checking validity of formula " + formula.toString() + " with CVC4.")
- print("CVC4 should report VALID.")
- print("Result from CVC4 is: " + smt.query(formula).toString())
+ print("Checking entailment of formula " + formula.toString() + " with CVC4.")
+ print("CVC4 should report ENTAILED .")
+ print("Result from CVC4 is: " + smt.checkEntailed(formula).toString())
return 0
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback