diff options
Diffstat (limited to 'tactics/inv.mli')
-rw-r--r-- | tactics/inv.mli | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tactics/inv.mli b/tactics/inv.mli new file mode 100644 index 00000000..e19d8232 --- /dev/null +++ b/tactics/inv.mli @@ -0,0 +1,44 @@ +(************************************************************************) +(* 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,v 1.10.2.1 2004/07/16 19:30:53 herbelin Exp $ i*) + +(*i*) +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 option -> quantified_hypothesis -> tactic +val invIn_gen : + inversion_kind -> intro_pattern_expr option -> identifier list -> + quantified_hypothesis -> tactic + +val inv_clause : + inversion_kind -> intro_pattern_expr option -> identifier list -> + quantified_hypothesis -> tactic + +val inv : inversion_kind -> intro_pattern_expr option -> + quantified_hypothesis -> tactic + +val dinv : inversion_kind -> constr option -> intro_pattern_expr 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 |