aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-07-07 16:26:42 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-07-07 16:26:42 +0200
commit0a5ce82066855bae205f9536c008715eebb470f2 (patch)
treed07ce5a99b4d680c31e2e43f635ad4d37dff8945 /unit-tests
parentc7f38ea3b96ee0e52f0e1f20ccfabd3206ff6ad2 (diff)
parent0a0dc47da1916c2a850610cfb80ba04c17e64549 (diff)
downloadsmtcoq-0a5ce82066855bae205f9536c008715eebb470f2.tar.gz
smtcoq-0a5ce82066855bae205f9536c008715eebb470f2.zip
Merge remote-tracking branch 'remotes/origin/coq-8.12' into coq-8.13
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/Tests_lfsc_tactics.v14
1 files changed, 7 insertions, 7 deletions
diff --git a/unit-tests/Tests_lfsc_tactics.v b/unit-tests/Tests_lfsc_tactics.v
index cb9d7ba..4cef5f1 100644
--- a/unit-tests/Tests_lfsc_tactics.v
+++ b/unit-tests/Tests_lfsc_tactics.v
@@ -503,8 +503,8 @@ Qed.
-Goal forall x y z, ((x <=? 3) && ((y <=? 7) || (z <=? 9))) -->
- ((x + y <=? 10) || (x + z <=? 12)) = true.
+Goal forall x y z, ((x <=? 3) && ((y <=? 7) || (z <=? 9)))%Z -->
+ ((x + y <=? 10) || (x + z <=? 12))%Z = true.
Proof using.
smt.
Qed.
@@ -515,29 +515,29 @@ Proof using.
Qed.
-Goal forall x y, (x >? y) --> (y + 1 <=? x) = true.
+Goal forall x y, (x >? y)%Z --> (y + 1 <=? x)%Z = true.
Proof using.
smt.
Qed.
-Goal forall x y, Bool.eqb (x <? y) (x <=? y - 1) = true.
+Goal forall x y, Bool.eqb (x <? y)%Z (x <=? y - 1)%Z = true.
Proof using.
smt.
Qed.
Goal forall x y, ((x + y <=? - (3)) && (y >=? 0)
- || (x <=? - (3))) && (x >=? 0) = false.
+ || (x <=? - (3)))%Z && (x >=? 0) = false.
Proof using.
smt.
Qed.
-Goal forall x, (andb ((x - 3) <=? 7) (7 <=? (x - 3))) --> (x >=? 10) = true.
+Goal forall x, (andb ((x - 3) <=? 7) (7 <=? (x - 3)))%Z --> (x >=? 10) = true.
Proof using.
smt.
Qed.
-Goal forall x, (Z.eqb (x - 3) 7) --> (10 <=? x) = true.
+Goal forall x, (Z.eqb (x - 3) 7)%Z --> (10 <=? x)%Z = true.
Proof using.
smt.
Qed.