aboutsummaryrefslogtreecommitdiffstats
path: root/src/spl/Syntactic.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/spl/Syntactic.v')
-rw-r--r--src/spl/Syntactic.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spl/Syntactic.v b/src/spl/Syntactic.v
index cc34522..6d66a43 100644
--- a/src/spl/Syntactic.v
+++ b/src/spl/Syntactic.v
@@ -11,7 +11,7 @@
(*** Spl -- a small checker for simplifications ***)
-Require Import List PArray Bool Int63 ZMicromega.
+Require Import List PArray Bool Int63 ZMicromega ZArith.
Require Import Misc State SMT_terms BVList.
Require Lia.
@@ -214,7 +214,7 @@ Section CheckAtom.
end.
(* TODO : move this *)
- Lemma Zge_is_ge_bool : forall x y, (x >= y) <-> (Zge_bool x y = true).
+ Lemma Zge_is_ge_bool : forall x y, (x >= y)%Z <-> (Zge_bool x y = true).
Proof.
intros x y;assert (W:=Zge_cases x y);destruct (Zge_bool x y).
split;auto.