From 4a2ef2747950e8a28bfce7ca641bedd7ef71bea1 Mon Sep 17 00:00:00 2001 From: ckeller Date: Wed, 21 Apr 2021 09:46:30 +0200 Subject: Convert hypotheses from Prop to bool (#89) * This PR converts hypotheses given to the tactics verit, verit_no_check, smt and smt_no_check from Prop to bool when needed. * Some current limitations are detailed in src/PropToBool.v. * Partially enhances #30 . --- src/SMTCoq.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SMTCoq.v') diff --git a/src/SMTCoq.v b/src/SMTCoq.v index 6b69058..398d066 100644 --- a/src/SMTCoq.v +++ b/src/SMTCoq.v @@ -10,7 +10,7 @@ (**************************************************************************) -Require Export PropToBool BoolToProp. (* Before SMTCoq.State *) +Require Export PropToBool. Require Export Int63 List PArray. Require Export SMTCoq.State SMTCoq.SMT_terms SMTCoq.Trace SMT_classes_instances. Require Export Tactics. -- cgit