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/verit/verit.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/verit/verit.mli') diff --git a/src/verit/verit.mli b/src/verit/verit.mli index 6fa62d8..4b84b58 100644 --- a/src/verit/verit.mli +++ b/src/verit/verit.mli @@ -19,5 +19,5 @@ val parse_certif : val checker : string -> string -> unit val checker_debug : string -> string -> unit val theorem : Structures.id -> string -> string -> unit -val tactic : Structures.constr list -> Structures.constr_expr list -> Structures.tactic -val tactic_no_check : Structures.constr list -> Structures.constr_expr list -> Structures.tactic +val tactic : EConstr.t -> Structures.constr_expr list -> Structures.tactic +val tactic_no_check : EConstr.t -> Structures.constr_expr list -> Structures.tactic -- cgit