aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2016-05-02 23:32:09 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2016-05-02 23:32:09 +0200
commit7a17276943c42c7997389d4782e457f449bd102e (patch)
tree433e1dd64dd2d685e8dcd9f85f42b7a5be80f667 /unit-tests
parentd3f4ee8411a56f77ad47449be57e40c846b49cfd (diff)
downloadsmtcoq-7a17276943c42c7997389d4782e457f449bd102e.tar.gz
smtcoq-7a17276943c42c7997389d4782e457f449bd102e.zip
Correct parsing of <-> for veriT
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/Tests_verit.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/unit-tests/Tests_verit.v b/unit-tests/Tests_verit.v
index e99e484..ccc2714 100644
--- a/unit-tests/Tests_verit.v
+++ b/unit-tests/Tests_verit.v
@@ -527,6 +527,12 @@ Proof.
Qed.
+Goal forall x y, Bool.eqb (negb (xorb x y)) ((x && y) || ((negb x) && (negb y))).
+Proof.
+ verit.
+Qed.
+
+
Goal forall x y, Bool.eqb (implb x y) ((x && y) || (negb x)).
Proof.
verit.