diff options
| author | jforest | 2006-08-22 08:54:29 +0000 |
|---|---|---|
| committer | jforest | 2006-08-22 08:54:29 +0000 |
| commit | 1e0b3352390e4bbc3be4206e9c49e7c7fba3df45 (patch) | |
| tree | f4892b69f1f825ad7fc2c35ea7be86e29de7b369 /tactics/setoid_replace.mli | |
| parent | 353e280be1006b646cb4ac53e7282b4fe19b0460 (diff) | |
+ Changing "in <hyp>" to "in <clause>" (no at, no InValue and no
InType) for "replace <c1> with <c2>" and "replace c1" and partially
for "autorewrite".
+ Adding a "by tactic" optional argument to "setoid_replace".
+ Fixing bug #1207
+ Add new test files for syntax change and updating doc.
+ Moving argument tactic extensions from extratactics to extraargs
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9073 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/setoid_replace.mli')
| -rw-r--r-- | tactics/setoid_replace.mli | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tactics/setoid_replace.mli b/tactics/setoid_replace.mli index b8bed63c54..ecad6a574e 100644 --- a/tactics/setoid_replace.mli +++ b/tactics/setoid_replace.mli @@ -39,7 +39,7 @@ type morphism_signature = (bool option * constr_expr) list * constr_expr val pr_morphism_signature : morphism_signature -> Pp.std_ppcmds -val register_replace : (constr -> constr -> tactic) -> unit +val register_replace : (tactic option -> constr -> constr -> tactic) -> unit val register_general_rewrite : (bool -> constr -> tactic) -> unit val print_setoids : unit -> unit @@ -52,8 +52,9 @@ val default_morphism : ?filter:(constr morphism -> bool) -> constr -> relation morphism val setoid_replace : - constr option -> constr -> constr -> new_goals:constr list -> tactic + tactic option -> constr option -> constr -> constr -> new_goals:constr list -> tactic val setoid_replace_in : + tactic option -> identifier -> constr option -> constr -> constr -> new_goals:constr list -> tactic |
