summaryrefslogtreecommitdiff
path: root/tactics/inv.mli
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/inv.mli')
-rw-r--r--tactics/inv.mli15
1 files changed, 8 insertions, 7 deletions
diff --git a/tactics/inv.mli b/tactics/inv.mli
index bd38d08f..bbb2a322 100644
--- a/tactics/inv.mli
+++ b/tactics/inv.mli
@@ -6,9 +6,10 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: inv.mli 7880 2006-01-16 13:59:08Z herbelin $ i*)
+(*i $Id: inv.mli 11309 2008-08-06 10:30:35Z herbelin $ i*)
(*i*)
+open Util
open Names
open Term
open Tacmach
@@ -21,20 +22,20 @@ type inversion_status = Dep of constr option | NoDep
val inv_gen :
bool -> inversion_kind -> inversion_status ->
- intro_pattern_expr -> quantified_hypothesis -> tactic
+ intro_pattern_expr located option -> quantified_hypothesis -> tactic
val invIn_gen :
- inversion_kind -> intro_pattern_expr -> identifier list ->
+ inversion_kind -> intro_pattern_expr located option -> identifier list ->
quantified_hypothesis -> tactic
val inv_clause :
- inversion_kind -> intro_pattern_expr -> identifier list ->
+ inversion_kind -> intro_pattern_expr located option -> identifier list ->
quantified_hypothesis -> tactic
-val inv : inversion_kind -> intro_pattern_expr ->
+val inv : inversion_kind -> intro_pattern_expr located option ->
quantified_hypothesis -> tactic
-val dinv : inversion_kind -> constr option -> intro_pattern_expr ->
- quantified_hypothesis -> tactic
+val dinv : inversion_kind -> constr option ->
+ intro_pattern_expr located option -> quantified_hypothesis -> tactic
val half_inv_tac : identifier -> tactic
val inv_tac : identifier -> tactic