X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_unification%2FcicUnification.ml;h=b9f87cf9a14a4f4b3e27ecb9d2524cc90fb25471;hb=4d08e8112264c289fdcc978ee81d9352e972edcf;hp=c56fb087423c457c3c599053544ec4e1ce0ab4f4;hpb=22f61c7bd18cd3652e886f6a765aab63eacac83c;p=helm.git diff --git a/helm/ocaml/cic_unification/cicUnification.ml b/helm/ocaml/cic_unification/cicUnification.ml index c56fb0874..b9f87cf9a 100644 --- a/helm/ocaml/cic_unification/cicUnification.ml +++ b/helm/ocaml/cic_unification/cicUnification.ml @@ -96,24 +96,22 @@ let rec fo_unif_subst subst context metasenv t1 t2 = fo_unif_subst subst context metasenv t2 t1 | (C.Meta (n,l), t) | (t, C.Meta (n,l)) -> - let fo_unif_subst = - let (lower,upper) = - match t1,t2 with - C.Meta (n,_), C.Meta (m,_) when n < m -> - (fun t1 t2 -> t1), (fun t1 t2 -> t2) - | _, C.Meta _ -> - (fun t1 t2 -> t1), (fun t1 t2 -> t2) - | _,_ -> - (fun t1 t2 -> t2), (fun t1 t2 -> t1) - in - fun subst context metasenv m1 m2 -> + let swap = + match t1,t2 with + C.Meta (n,_), C.Meta (m,_) when n < m -> false + | _, C.Meta _ -> false + | _,_ -> true + in + let lower = fun x y -> if swap then y else x in + let upper = fun x y -> if swap then x else y in + let fo_unif_subst_ordered subst context metasenv m1 m2 = fo_unif_subst subst context metasenv (lower m1 m2) (upper m1 m2) in let subst'',metasenv' = try let oldt = (List.assoc n subst) in let lifted_oldt = S.lift_meta l oldt in - fo_unif_subst subst context metasenv t lifted_oldt + fo_unif_subst_ordered subst context metasenv t lifted_oldt with Not_found -> let t',metasenv',subst' = try @@ -122,7 +120,7 @@ let rec fo_unif_subst subst context metasenv t1 t2 = (CicMetaSubst.MetaSubstFailure msg)-> raise(UnificationFailure msg) | (CicMetaSubst.Uncertain msg) -> raise (Uncertain msg) in - (n, t')::subst', metasenv' + (n, t')::subst', metasenv' in let (_,_,meta_type) = CicUtil.lookup_meta n metasenv' in (try