diff options
Diffstat (limited to 'tactics/setoid_replace.mli')
-rw-r--r-- | tactics/setoid_replace.mli | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tactics/setoid_replace.mli b/tactics/setoid_replace.mli new file mode 100644 index 00000000..565ae169 --- /dev/null +++ b/tactics/setoid_replace.mli @@ -0,0 +1,27 @@ +(************************************************************************) +(* 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 *) +(************************************************************************) + +(* $Id: setoid_replace.mli,v 1.3.6.1 2004/07/16 19:30:55 herbelin Exp $ *) + +open Term +open Proof_type +open Topconstr + +val equiv_list : unit -> constr list + +val setoid_replace : constr -> constr -> constr option -> tactic + +val setoid_rewriteLR : constr -> tactic + +val setoid_rewriteRL : constr -> tactic + +val general_s_rewrite : bool -> constr -> tactic + +val add_setoid : constr_expr -> constr_expr -> constr_expr -> unit + +val new_named_morphism : Names.identifier -> constr_expr -> unit |