aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/unification.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-10-11 19:18:02 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-10-11 19:18:02 +0000
commitbfc3e8cddd58cadc1bc907914a2ccd660be53912 (patch)
tree6bf603814e6981139d53a6388f3854189a8e7f09 /pretyping/unification.mli
parentc1234a327b8ef2b52af1410dace719000c360f53 (diff)
Moved to a more standard order of arguments (i.e. env followed by evar_map)
for the functions of unification.ml. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14547 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'pretyping/unification.mli')
-rw-r--r--pretyping/unification.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/pretyping/unification.mli b/pretyping/unification.mli
index cc781c871..d28451177 100644
--- a/pretyping/unification.mli
+++ b/pretyping/unification.mli
@@ -33,16 +33,16 @@ val elim_no_delta_flags : unify_flags
(** The "unique" unification fonction *)
val w_unify :
- env -> conv_pb -> ?flags:unify_flags -> constr -> constr -> evar_map -> evar_map
+ env -> evar_map -> conv_pb -> ?flags:unify_flags -> constr -> constr -> evar_map
(** [w_unify_to_subterm env (c,t) m] performs unification of [c] with a
subterm of [t]. Constraints are added to [m] and the matched
subterm of [t] is also returned. *)
val w_unify_to_subterm :
- env -> ?flags:unify_flags -> constr * constr -> evar_map -> evar_map * constr
+ env -> evar_map -> ?flags:unify_flags -> constr * constr -> evar_map * constr
val w_unify_to_subterm_all :
- env -> ?flags:unify_flags -> constr * constr -> evar_map -> (evar_map * constr) list
+ env -> evar_map -> ?flags:unify_flags -> constr * constr -> (evar_map * constr) list
val w_unify_meta_types : env -> ?flags:unify_flags -> evar_map -> evar_map