X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fhelena%2Fsrc%2Fbasic_rg%2FbrgReduction.ml;h=ffe223ab5ba02de662a2eea8d134241b8b6fe2b9;hb=88977b2d546e547e23b046792fe2ad8f6ff192a4;hp=774b016a19969dad5d5905c36e9000598dcd68db;hpb=c2a2ecf1a9d02b03b9e840e01128632663e5d8a5;p=helm.git diff --git a/helm/software/helena/src/basic_rg/brgReduction.ml b/helm/software/helena/src/basic_rg/brgReduction.ml index 774b016a1..ffe223ab5 100644 --- a/helm/software/helena/src/basic_rg/brgReduction.ml +++ b/helm/software/helena/src/basic_rg/brgReduction.ml @@ -10,6 +10,7 @@ V_______________________________________________________________ *) module U = NUri +module C = Cps module S = Share module L = Log module G = Options @@ -44,22 +45,23 @@ let log2 st s cu u ct t = let s1, s2, s3 = s ^ " in the environment (expected)", "the term", "and in the environment (inferred)" in L.log st BO.specs (pred level) (L.et_items2 s1 cu s2 u ~sc2:s3 ~c2:ct s2 t) -let rec list_and map = function +let rec list_and f map = function | hd1 :: tl1, hd2 :: tl2 -> - if map hd1 hd2 then list_and map (tl1, tl2) else false - | l1, l2 -> l1 = l2 + let f b = f (b && map hd1 hd2) in + list_and f map (tl1, tl2) + | l1, l2 -> f (l1 = l2) let zero = Some 0 (* check closure *) let are_alpha_convertible err f t1 t2 = let rec aux f = function - | B.Sort (_, p1), B.Sort (_, p2) + | B.Sort p1, B.Sort p2 | B.LRef (_, p1), B.LRef (_, p2) -> if p1 = p2 then f () else err () | B.GRef (_, u1), B.GRef (_, u2) -> if U.eq u1 u2 then f () else err () - | B.Cast (_, v1, t1), B.Cast (_, v2, t2) + | B.Cast (v1, t1), B.Cast (v2, t2) | B.Appl (_, v1, t1), B.Appl (_, v2, t2) -> let f _ = aux f (t1, t2) in aux f (v1, v2) @@ -69,7 +71,7 @@ let are_alpha_convertible err f t1 t2 = | _ -> err () and aux_bind f = function | B.Abbr v1, B.Abbr v2 -> aux f (v1, v2) - | B.Abst (x1, n1, v1), B.Abst (x2, n2, v2) when x1 = x2 && n1 = n2 -> aux f (v1, v2) + | B.Abst (r1, n1, v1), B.Abst (r2, n2, v2) when r1 = r2 && n1 = n2 -> aux f (v1, v2) | B.Void, B.Void -> f () | _ -> err () in @@ -88,84 +90,97 @@ let tsteps m = match m.n with | None -> 0 let get m i = - let _, c, a, b = B.get m.e i in c, a, b + let _, c, a, _, b = B.get m.e i in c, a, b (* to share *) -let rec step st m r = - if !G.trace >= sublevel then - log1 st (Printf.sprintf "entering R.step: l:%u n:%s" m.l (match m.n with Some n -> string_of_int n | None -> "infinite")) m.e r; +let rec step st m r = +IFDEF TRACE THEN + if !G.ct >= sublevel then + log1 st (Printf.sprintf "entering R.step: l=%u, n=%s," m.l (match m.n with Some n -> string_of_int n | None -> "infinite")) m.e r +ELSE () END; match r with - | B.Sort (a, h) -> + | B.Sort k -> if assert_tstep m false then - step st (tstep m) (B.Sort (a, H.apply h)) + step st (tstep m) (B.Sort (H.apply k)) else m, r, None - | B.GRef (_, uri) -> - begin match BE.get_entity uri with - | _, _, _, E.Abbr v -> - if m.n = None || !G.expand then begin - if !G.summary then O.add ~gdelta:1 (); - step st m v - end else - m, r, Some v - | _, _, _, E.Abst w -> + | B.GRef (_, u) -> + begin match BE.get_entity u with + | _, a, _, E.Abbr (_, v) -> + m, B.gref a u, Some v + | _, _, _, E.Abst (_, w) -> if assert_tstep m true then begin - if !G.summary then O.add ~grt:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~grt:1 () +ELSE () END; step st (tstep m) w end else - m, r, None - | _, _, _, E.Void -> + m, r, None + | _, _, _, E.Void -> assert false end | B.LRef (_, i) -> begin match get m i with | c, _, B.Abbr v -> - if !G.summary then O.add ~ldelta:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~ldelta:1 () +ELSE () END; step st {m with e = c} v | c, a, B.Abst (_, _, w) -> if assert_tstep m true then begin - if !G.summary then O.add ~lrt:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~lrt:1 () +ELSE () END; step st {(tstep m) with e = c} w end else - m, B.LRef (a, i), None + m, B.lref a i, None | _, _, B.Void -> assert false end - | B.Cast (_, u, t) -> + | B.Cast (u, t) -> if assert_tstep m false then begin - if !G.summary then O.add ~e:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~e:1 () +ELSE () END; step st (tstep m) u end else begin - if !G.summary then O.add ~epsilon:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~epsilon:1 () +ELSE () END; step st m t end | B.Appl (_, v, t) -> step st {m with s = (m.e, v) :: m.s} t - | B.Bind (a, B.Abst (false, n, w), t) -> + | B.Bind (y, B.Abst (false, n, w), t) -> let i = tsteps m in - if !G.summary then O.add ~x:i (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~x:i () +ELSE () END; let n = if i = 0 then n else N.minus st n i in - let r = B.Bind (a, B.Abst (true, n, w), t) in + let r = B.Bind (y, B.Abst (true, n, w), t) in step st m r - | B.Bind (a, B.Abst (true, n, w), t) -> + | B.Bind (y, B.Abst (true, n, w), t) -> if !G.si || N.is_not_zero st n then begin match m.s with | [] -> - m, B.Bind (a, B.Abst (true, n, w), t), None + m, B.Bind (y, B.Abst (true, n, w), t), None | (c, v) :: s -> -(* - if !G.cc && not (N.assert_not_zero st n) then assert false; -*) - if !G.summary then O.add ~beta:1 ~theta:(List.length s) (); - let v = B.Cast (E.empty_node, w, v) in - let e = B.push m.e c a (B.abbr v) in +IFDEF SUMMARY THEN + if !G.summary then O.add ~beta:1 ~theta:(List.length s) () +ELSE () END; + let v = B.Cast (w, v) in + let e = B.push m.e c E.empty_node y (B.abbr v) in step st {m with e = e; s = s} t end else begin - if !G.summary then O.add ~upsilon:1 (); - let e = B.push m.e m.e a B.Void in (**) (* this is wrong in general *) +IFDEF SUMMARY THEN + if !G.summary then O.add ~upsilon:1 () +ELSE () END; + let e = B.push m.e m.e E.empty_node y B.Void in (**) (* this is wrong in general *) step st {m with e = e} t end - | B.Bind (a, b, t) -> - if !G.summary then O.add ~theta:(List.length m.s) (); - let e = B.push m.e m.e a b in + | B.Bind (y, b, t) -> +IFDEF SUMMARY THEN + if !G.summary then O.add ~theta:(List.length m.s) () +ELSE () END; + let e = B.push m.e m.e E.empty_node y b in step st {m with e = e} t let assert_iterations m1 m2 = @@ -174,19 +189,21 @@ let assert_iterations m1 m2 = let reset m ?(e=m.e) n = {m with e = e; n = n; s = []} -let push m a b = +let push m y b = let a, l = match b with - | B.Abst _ -> {a with E.n_apix = m.l}, succ m.l - | _ -> a, m.l + | B.Abst _ -> E.node_attrs ~apix:m.l (), succ m.l + | _ -> E.empty_node, m.l in - let e = B.push m.e m.e a b in + let e = B.push m.e m.e a y b in {m with e = e; l = l} let rec ac_nfs st (m1, t1, r1) (m2, t2, r2) = - if !G.trace >= level then log2 st "Now converting nfs" m1.e t1 m2.e t2; +IFDEF TRACE THEN + if !G.ct >= level then log2 st "Now converting nfs" m1.e t1 m2.e t2 +ELSE () END; match t1, r1, t2, r2 with - | B.Sort (_, h1), _, B.Sort (_, h2), _ -> - h1 = h2 + | B.Sort k1, _, B.Sort k2, _ -> + k1 = k2 | B.LRef ({E.n_apix = e1}, _), _, B.LRef ({E.n_apix = e2}, _), _ -> if e1 = e2 then ac_stacks st m1 m2 else false @@ -194,34 +211,46 @@ let rec ac_nfs st (m1, t1, r1) (m2, t2, r2) = if U.eq u1 u2 && assert_iterations m1 m2 then ac_stacks st m1 m2 else false | B.GRef ({E.n_apix = e1}, u1), Some v1, B.GRef ({E.n_apix = e2}, u2), Some v2 -> - if e1 < e2 then begin - if !G.summary then O.add ~gdelta:1 (); + if U.eq u1 u2 && assert_iterations m1 m2 && ac_stacks st m1 m2 then true + else if e1 < e2 then begin +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:1 () +ELSE () END; ac_nfs st (m1, t1, r1) (step st m2 v2) end else if e2 < e1 then begin - if !G.summary then O.add ~gdelta:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:1 () +ELSE () END; ac_nfs st (step st m1 v1) (m2, t2, r2) - end else if U.eq u1 u2 && assert_iterations m1 m2 && ac_stacks st m1 m2 then true - else begin - if !G.summary then O.add ~gdelta:2 (); + end else begin +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:2 () +ELSE () END; ac st m1 v1 m2 v2 - end + end | _, _, B.GRef _, Some v2 -> - if !G.summary then O.add ~gdelta:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:1 () +ELSE () END; ac_nfs st (m1, t1, r1) (step st m2 v2) | B.GRef _, Some v1, _, _ -> - if !G.summary then O.add ~gdelta:1 (); +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:1 () +ELSE () END; ac_nfs st (step st m1 v1) (m2, t2, r2) - | B.Bind (a1, (B.Abst (true, n1, w1) as b1), t1), _, - B.Bind (a2, (B.Abst (true, n2, w2) as b2), t2), _ -> + | B.Bind (y1, (B.Abst (true, n1, w1) as b1), t1), _, + B.Bind (y2, (B.Abst (true, n2, w2) as b2), t2), _ -> if ((!G.cc && N.assert_equal st n1 n2) || N.are_equal st n1 n2) && ac st (reset m1 zero) w1 (reset m2 zero) w2 - then ac st (push m1 a1 b1) t1 (push m2 a2 b2) t2 + then ac st (push m1 y1 b1) t1 (push m2 y2 b2) t2 else false - | B.Sort _, _, B.Bind (a, B.Abst (true, n, _), t), _ -> + | B.Sort _, _, B.Bind (y, B.Abst (true, n, _), t), _ -> if !G.si then if !G.cc && not (N.assert_zero st n) then false else begin - if !G.summary then O.add ~upsilon:1 (); - ac st (push m1 a B.Void) t1 (push m2 a B.Void) t end +IFDEF SUMMARY THEN + if !G.summary then O.add ~upsilon:1 () +ELSE () END; + ac st (push m1 y B.Void) t1 (push m2 y B.Void) t end else false | _ -> false @@ -231,12 +260,22 @@ and ac st m1 t1 m2 t2 = and ac_stacks st m1 m2 = (* L.warn "entering R.are_convertible_stacks"; *) - if List.length m1.s <> List.length m2.s then false else let map (c1, v1) (c2, v2) = let m1, m2 = reset m1 ~e:c1 zero, reset m2 ~e:c2 zero in ac st m1 v1 m2 v2 in - list_and map (m1.s, m2.s) + list_and C.start map (m1.s, m2.s) + +let rec ih_nfs st (m, t, r) = + match t, r with + | B.GRef _, Some v -> +IFDEF SUMMARY THEN + if !G.summary then O.add ~gdelta:1 () +ELSE () END; + ih st m v + | _ -> m, t + +and ih st m t = ih_nfs st (step st m t) (* Interface functions ******************************************************) @@ -246,15 +285,18 @@ let empty_rtm = { let get m i = assert (m.s = []); - let _, _, _, b = B.get m.e i in b + let _, _, _, _, b = B.get m.e i in b let xwhd st m n t = - if !G.trace >= level then log1 st "Now scanning" m.e t; - let m, t, _ = step st (reset m n) t in - m, t +IFDEF TRACE THEN + if !G.ct >= level then log1 st "Now scanning" m.e t +ELSE () END; + ih st (reset m n) t let are_convertible st m1 n1 t1 m2 n2 t2 = - if !G.trace >= level then log2 st "Now converting" m1.e t1 m2.e t2; +IFDEF TRACE THEN + if !G.ct >= level then log2 st "Now converting" m1.e t1 m2.e t2 +ELSE () END; let r = ac st (reset m1 n1) t1 (reset m2 n2) t2 in r (* let err _ = in