]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/basic_ag/bagReduction.ml
518f7061b12fa8fec1ac63a6d79d479c04d125f0
[helm.git] / helm / software / lambda-delta / basic_ag / bagReduction.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.              
9      \ /   This software is distributed as is, NO WARRANTY.              
10       V_______________________________________________________________ *)
11
12 module U = NUri
13 module C = Cps
14 module L = Log
15 module B = Bag
16 module O = BagOutput
17 module E = BagEnvironment
18 module S = BagSubstitution
19
20 exception LRefNotFound of B.message
21
22 type machine = {
23    i: int;
24    c: B.context;
25    s: B.term list
26 }
27
28 type whd_result =
29    | Sort_ of int
30    | LRef_ of int * B.term option
31    | GRef_ of B.obj
32    | Bind_ of int * B.id * B.term * B.term
33
34 type ho_whd_result =
35    | Sort of int
36    | GRef of U.uri * B.term list
37    | Abst of B.term
38
39 (* Internal functions *******************************************************)
40
41 let term_of_whdr = function
42    | Sort_ h             -> B.Sort h
43    | LRef_ (i, _)        -> B.LRef i
44    | GRef_ (_, uri, _)   -> B.GRef uri
45    | Bind_ (l, id, w, t) -> B.bind_abst l id w t
46
47 let level = 5
48
49 let error i = raise (LRefNotFound (L.items1 (string_of_int i)))
50
51 let log1 s c t =
52    let sc, st = s ^ " in the context", "the term" in
53    L.log O.specs level (L.ct_items1 sc c st t)
54
55 let log2 s c u t =
56    let sc, su, st = s ^ " in the context", "the term", "and the term" in
57    L.log O.specs level (L.ct_items2 sc c su u st t)
58
59 let empty_machine = {i = 0; c = B.empty_context; s = []}
60
61 let inc m = {m with i = succ m.i}
62
63 let unwind_to_term f m t =
64    let map f t (l, id, b) = f (B.Bind (l, id, b, t)) in
65    let f mc = C.list_fold_left f map t mc in
66    B.contents f m.c
67
68 let unwind_stack f m =
69    let map f v = unwind_to_term f m v in
70    C.list_map f map m.s
71
72 let get f c m i =
73    let f = function
74       | Some (_, b) -> f b
75       | None        -> error i
76    in
77    let f c = B.get f c i in
78    B.append f c m.c
79
80 let push msg f c m l id w = 
81    assert (m.s = []);
82    let f w = B.push msg f c l id (B.Abst w) in
83    unwind_to_term f m w
84
85 (* to share *)
86 let rec whd f c m x = 
87 (*   L.warn "entering R.whd"; *)
88    match x with
89    | B.Sort h                    -> f m (Sort_ h)
90    | B.GRef uri                  ->
91       let f obj = f m (GRef_ obj) in
92       E.get_obj f uri
93    | B.LRef i                    ->
94       let f = function
95          | B.Void   -> f m (LRef_ (i, None))
96          | B.Abst t -> f m (LRef_ (i, Some t))
97          | B.Abbr t -> whd f c m t
98       in
99       get f c m i
100    | B.Cast (_, t)               -> whd f c m t
101    | B.Appl (v, t)               -> whd f c {m with s = v :: m.s} t   
102    | B.Bind (l, id, B.Abst w, t) -> 
103       begin match m.s with
104          | []      -> f m (Bind_ (l, id, w, t))
105          | v :: tl -> 
106             let nl = B.new_location () in
107             let f mc = S.subst (whd f c {m with c = mc; s = tl}) nl l t in
108             B.push "!" f m.c nl id (B.Abbr (B.Cast (w, v)))
109       end
110    | B.Bind (l, id, b, t)         -> 
111       let nl = B.new_location () in
112       let f mc = S.subst (whd f c {m with c = mc}) nl l t in
113       B.push "!" f m.c nl id b
114
115 (* Interface functions ******************************************************)
116
117 let nsi = ref false
118
119 let rec ho_whd f c m x =
120 (*   L.warn "entering R.ho_whd"; *)
121    let aux m = function
122       | Sort_ h                -> f (Sort h)
123       | Bind_ (_, _, w, _)     -> 
124          let f w = f (Abst w) in unwind_to_term f m w
125       | LRef_ (_, Some w)      -> ho_whd f c m w
126       | GRef_ (_, _, B.Abst w) -> ho_whd f c m w  
127       | GRef_ (_, _, B.Abbr v) -> ho_whd f c m v
128       | LRef_ (_, None)        -> assert false
129       | GRef_ (_, _, B.Void)   -> assert false
130    in
131    whd aux c m x
132    
133 let ho_whd f c t =
134    let f r = L.unbox level; f r in
135    L.box level; log1 "Now scanning" c t;
136    ho_whd f c empty_machine t
137
138 let rec are_convertible f a c m1 t1 m2 t2 =
139 (*   L.warn "entering R.are_convertible"; *)
140    let rec aux m1 r1 m2 r2 =
141 (*   L.warn "entering R.are_convertible_aux"; *)
142    let u, t = term_of_whdr r1, term_of_whdr r2 in
143    log2 "Now really converting" c u t;   
144    match r1, r2 with
145       | Sort_ h1, Sort_ h2                                 ->
146          if h1 = h2 then f a else f false 
147       | LRef_ (i1, _), LRef_ (i2, _)                       ->
148          if i1 = i2 then are_convertible_stacks f a c m1 m2 else f false
149       | GRef_ (a1, _, B.Abst _), GRef_ (a2, _, B.Abst _)   ->
150          if a1 = a2 then are_convertible_stacks f a c m1 m2 else f false
151       | GRef_ (a1, _, B.Abbr v1), GRef_ (a2, _, B.Abbr v2) ->
152          if a1 = a2 then
153             let f a = if a then f a else are_convertible f true c m1 v1 m2 v2 in
154             are_convertible_stacks f a c m1 m2
155          else
156          if a1 < a2 then whd (aux m1 r1) c m2 v2 else
157          whd (aux_rev m2 r2) c m1 v1
158       | _, GRef_ (_, _, B.Abbr v2)                         ->
159          whd (aux m1 r1) c m2 v2
160       | GRef_ (_, _, B.Abbr v1), _                         ->
161          whd (aux_rev m2 r2) c m1 v1      
162       | Bind_ (l1, id1, w1, t1), Bind_ (l2, id2, w2, t2)   ->
163            let l = B.new_location () in
164            let h c =
165               let m1, m2 = inc m1, inc m2 in
166               let f t1 = S.subst (are_convertible f a c m1 t1 m2) l l2 t2 in
167               S.subst f l l1 t1
168          in
169          let f r = if r then push "!" h c m1 l id1 w1 else f false in
170          are_convertible f a c m1 w1 m2 w2
171 (* we detect the AUT-QE reduction rule for type/prop inclusion *)      
172       | Sort_ _, Bind_ (l2, id2, w2, t2) when !nsi         ->
173          let m1, m2 = inc m1, inc m2 in
174          let f c = are_convertible f a c m1 (term_of_whdr r1) m2 t2 in
175          push "nsi" f c m2 l2 id2 w2
176       | _                                                  -> f false
177    and aux_rev m2 r2 m1 r1 = aux m1 r1 m2 r2 in
178    let g m1 r1 = whd (aux m1 r1) c m2 t2 in 
179    if a = false then f false else whd g c m1 t1
180
181 and are_convertible_stacks f a c m1 m2 =
182 (*   L.warn "entering R.are_convertible_stacks"; *)
183    let mm1, mm2 = {m1 with s = []}, {m2 with s = []} in
184    let map f a v1 v2 = are_convertible f a c mm1 v1 mm2 v2 in
185    if List.length m1.s <> List.length m2.s then 
186       begin 
187 (*         L.warn (Printf.sprintf "Different lengths: %u %u"
188             (List.length m1.s) (List.length m2.s) 
189          ); *)
190          f false
191       end
192    else
193       C.list_fold_left2 f map a m1.s m2.s
194
195 let are_convertible f c u t = 
196    let f b = L.unbox level; f b in
197    L.box level; log2 "Now converting" c u t;
198    are_convertible f true c empty_machine u empty_machine t