aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorclrenard2001-11-06 13:44:30 +0000
committerclrenard2001-11-06 13:44:30 +0000
commitfd90172e9910c908639f661a723fa68a7aca4aff (patch)
tree06d2e2fde3afd125b1340da0417f895a1df40e1f /tactics
parent22ac53765e6f3d8ee2f05ad5fcdb046fbf4b6baf (diff)
Suite de la suppression : enamed_declaration est remplace par evar_map.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2164 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tactics.ml2
-rw-r--r--tactics/tactics.mli8
2 files changed, 5 insertions, 5 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index ca22b899b7..d20712b5d3 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -153,7 +153,7 @@ let dyn_mutual_cofix argsl gl =
(* Reduction and conversion tactics *)
(**************************************************************)
-type 'a tactic_reduction = env -> enamed_declarations -> constr -> constr
+type tactic_reduction = env -> evar_map -> constr -> constr
(* The following two tactics apply an arbitrary
reduction function either to the conclusion or to a
diff --git a/tactics/tactics.mli b/tactics/tactics.mli
index d494417753..60d48530ce 100644
--- a/tactics/tactics.mli
+++ b/tactics/tactics.mli
@@ -112,11 +112,11 @@ val dyn_exact_check : tactic_arg list -> tactic
(*s Reduction tactics. *)
-type 'a tactic_reduction = env -> enamed_declarations -> constr -> constr
+type tactic_reduction = env -> evar_map -> constr -> constr
-val reduct_in_hyp : 'a tactic_reduction -> hyp_location -> tactic
-val reduct_option : 'a tactic_reduction -> hyp_location option -> tactic
-val reduct_in_concl : 'a tactic_reduction -> tactic
+val reduct_in_hyp : tactic_reduction -> hyp_location -> tactic
+val reduct_option : tactic_reduction -> hyp_location option -> tactic
+val reduct_in_concl : tactic_reduction -> tactic
val change_in_concl : constr -> tactic
val change_in_hyp : constr -> hyp_location -> tactic