blob: bbb2a322e8a4c6622fc64f8a6d0424f0bfa174ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i $Id: inv.mli 11309 2008-08-06 10:30:35Z herbelin $ i*)
(*i*)
open Util
open Names
open Term
open Tacmach
open Genarg
open Tacexpr
open Rawterm
(*i*)
type inversion_status = Dep of constr option | NoDep
val inv_gen :
bool -> inversion_kind -> inversion_status ->
intro_pattern_expr located option -> quantified_hypothesis -> tactic
val invIn_gen :
inversion_kind -> intro_pattern_expr located option -> identifier list ->
quantified_hypothesis -> tactic
val inv_clause :
inversion_kind -> intro_pattern_expr located option -> identifier list ->
quantified_hypothesis -> tactic
val inv : inversion_kind -> intro_pattern_expr located option ->
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
val inv_clear_tac : identifier -> tactic
val half_dinv_tac : identifier -> tactic
val dinv_tac : identifier -> tactic
val dinv_clear_tac : identifier -> tactic
|