From ec41af7ac01cef7c30785e6dd704381f31e7c2d3 Mon Sep 17 00:00:00 2001 From: ckeller Date: Thu, 14 Feb 2019 20:09:40 +0100 Subject: V8.7 (#36) Port SMTCoq to Coq-8.7 --- src/spl/Syntactic.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/spl/Syntactic.v') 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. -- cgit