diff options
Diffstat (limited to 'tactics/leminv.mli')
-rw-r--r-- | tactics/leminv.mli | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/tactics/leminv.mli b/tactics/leminv.mli index 233aeba3..47a4de44 100644 --- a/tactics/leminv.mli +++ b/tactics/leminv.mli @@ -1,19 +1,20 @@ -open Util +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +open Loc open Names open Term -open Glob_term -open Proof_type -open Topconstr - -val lemInv_gen : quantified_hypothesis -> constr -> tactic -val lemInvIn_gen : quantified_hypothesis -> constr -> identifier list -> tactic +open Constrexpr +open Misctypes val lemInv_clause : - quantified_hypothesis -> constr -> identifier list -> tactic + quantified_hypothesis -> constr -> Id.t list -> unit Proofview.tactic -val inversion_lemma_from_goal : - int -> identifier -> identifier located -> sorts -> bool -> - (identifier -> tactic) -> unit val add_inversion_lemma_exn : - identifier -> constr_expr -> glob_sort -> bool -> (identifier -> tactic) -> + Id.t -> constr_expr -> glob_sort -> bool -> (Id.t -> unit Proofview.tactic) -> unit |