diff options
Diffstat (limited to 'tactics/inv.mli')
-rw-r--r-- | tactics/inv.mli | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tactics/inv.mli b/tactics/inv.mli index c63d57af..bbd1f335 100644 --- a/tactics/inv.mli +++ b/tactics/inv.mli @@ -10,11 +10,15 @@ open Names open EConstr -open Misctypes open Tactypes type inversion_status = Dep of constr option | NoDep +type inversion_kind = + | SimpleInversion + | FullInversion + | FullInversionClear + val inv_clause : inversion_kind -> or_and_intro_pattern option -> Id.t list -> quantified_hypothesis -> unit Proofview.tactic |