aboutsummaryrefslogtreecommitdiffstats
path: root/src/spl/Syntactic.v
diff options
context:
space:
mode:
authorckeller <ckeller@users.noreply.github.com>2019-02-14 20:09:40 +0100
committerGitHub <noreply@github.com>2019-02-14 20:09:40 +0100
commitec41af7ac01cef7c30785e6dd704381f31e7c2d3 (patch)
tree13d51483c50d7b5a668d90b8b67a8b99ef0fbe56 /src/spl/Syntactic.v
parentba22fad2fb46962eef5f30d976e9eaeb587023a0 (diff)
downloadsmtcoq-ec41af7ac01cef7c30785e6dd704381f31e7c2d3.tar.gz
smtcoq-ec41af7ac01cef7c30785e6dd704381f31e7c2d3.zip
V8.7 (#36)
Port SMTCoq to Coq-8.7
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.