]> matita.cs.unibo.it Git - fireball-separation.git/blob - ocaml/simple.ml
Experimenting with backtracking and stepping on "all" possible subterms
[fireball-separation.git] / ocaml / simple.ml
1 let (++) f g x = f (g x);;\r
2 let id x = x;;\r
3 let rec fold_nat f x n = if n = 0 then x else f (fold_nat f x (n-1)) n ;;\r
4 \r
5 let print_hline = Console.print_hline;;\r
6 \r
7 open Pure\r
8 \r
9 type var = int;;\r
10 type t =\r
11  | V of var\r
12  | A of t * t\r
13  | L of t\r
14  | B (* bottom *)\r
15  | C (* constant *)\r
16 ;;\r
17 \r
18 let delta = L(A(V 0, V 0));;\r
19 \r
20 let rec is_stuck = function\r
21  | C -> true\r
22  | A(t,_) -> is_stuck t\r
23  | _ -> false\r
24 ;;\r
25 \r
26 let eta_eq' =\r
27  let rec aux l1 l2 t1 t2 = match t1, t2 with\r
28   | _, _ when is_stuck t1 || is_stuck t2 -> true\r
29   | L t1, L t2 -> aux l1 l2 t1 t2\r
30   | L t1, t2 -> aux l1 (l2+1) t1 t2\r
31   | t1, L t2 -> aux (l1+1) l2 t1 t2\r
32   | V a, V b -> a + l1 = b + l2\r
33   | A(t1,t2), A(u1,u2) -> aux l1 l2 t1 u1 && aux l1 l2 t2 u2\r
34   | _, _ -> false\r
35  in aux ;;\r
36 let eta_eq = eta_eq' 0 0;;\r
37 \r
38 (* is arg1 eta-subterm of arg2 ? *)\r
39 let eta_subterm u =\r
40  let rec aux lev t = if t = C then false else (eta_eq' lev 0 u t || match t with\r
41  | L t -> aux (lev+1) t\r
42  | A(t1, t2) -> aux lev t1 || aux lev t2\r
43  | _ -> false) in\r
44  aux 0\r
45 ;;\r
46 \r
47 (* does NOT lift the argument *)\r
48 let mk_lams = fold_nat (fun x _ -> L x) ;;\r
49 \r
50 let string_of_t =\r
51   let string_of_bvar =\r
52    let bound_vars = ["x"; "y"; "z"; "w"; "q"] in\r
53    let bvarsno = List.length bound_vars in\r
54    fun nn -> if nn < bvarsno then List.nth bound_vars nn else "x" ^ (string_of_int (nn - bvarsno + 1)) in\r
55   let rec string_of_term_w_pars level = function\r
56     | V v -> if v >= level then "`" ^ string_of_int (v-level) else\r
57        string_of_bvar (level - v-1)\r
58     | C -> "C"\r
59     | A _\r
60     | L _ as t -> "(" ^ string_of_term_no_pars level t ^ ")"\r
61     | B -> "BOT"\r
62   and string_of_term_no_pars_app level = function\r
63     | A(t1,t2) -> string_of_term_no_pars_app level t1 ^ " " ^ string_of_term_w_pars level t2\r
64     | _ as t -> string_of_term_w_pars level t\r
65   and string_of_term_no_pars level = function\r
66     | L t -> "λ" ^ string_of_bvar level ^ ". " ^ string_of_term_no_pars (level+1) t\r
67     | _ as t -> string_of_term_no_pars_app level t\r
68   in string_of_term_no_pars 0\r
69 ;;\r
70 \r
71 type problem = {\r
72    orig_freshno: int\r
73  ; freshno : int\r
74  ; div : t\r
75  ; conv : t\r
76  ; sigma : (var * t) list (* substitutions *)\r
77  ; stepped : var list\r
78  ; phase : [`One | `Two] (* :'( *)\r
79 }\r
80 \r
81 let string_of_problem p =\r
82  let lines = [\r
83   "[stepped] " ^ String.concat " " (List.map string_of_int p.stepped);\r
84   "[DV] " ^ string_of_t p.div;\r
85   "[CV] " ^ string_of_t p.conv;\r
86  ] in\r
87  String.concat "\n" lines\r
88 ;;\r
89 \r
90 exception Done of (var * t) list (* substitution *);;\r
91 exception Fail of int * string;;\r
92 \r
93 let problem_fail p reason =\r
94  print_endline "!!!!!!!!!!!!!!! FAIL !!!!!!!!!!!!!!!";\r
95  print_endline (string_of_problem p);\r
96  raise (Fail (-1, reason))\r
97 ;;\r
98 \r
99 let freshvar ({freshno} as p) =\r
100  {p with freshno=freshno+1}, freshno+1\r
101 ;;\r
102 \r
103 let rec is_inert =\r
104  function\r
105  | A(t,_) -> is_inert t\r
106  | V _ -> true\r
107  | C\r
108  | L _ | B -> false\r
109 ;;\r
110 \r
111 let rec get_inert = function\r
112  | V _ | C as t -> (t,0)\r
113  | A(t, _) -> let hd,args = get_inert t in hd,args+1\r
114  | _ -> assert false\r
115 ;;\r
116 \r
117 (* precomputes the number of leading lambdas in a term,\r
118    after replacing _v_ w/ a term starting with n lambdas *)\r
119 let rec no_leading_lambdas v n = function\r
120  | L t -> 1 + no_leading_lambdas (v+1) n t\r
121  | A _ as t -> let v', m = get_inert t in if V v = v' then max 0 (n - m) else 0\r
122  | V v' -> if v = v' then n else 0\r
123  | B | C -> 0\r
124 ;;\r
125 \r
126 let rec subst level delift sub =\r
127  function\r
128  | V v -> if v = level + fst sub then lift level (snd sub) else V (if delift && v > level then v-1 else v)\r
129  | L t -> let t = subst (level + 1) delift sub t in if t = B then B else L t\r
130  | A (t1,t2) ->\r
131   let t1 = subst level delift sub t1 in\r
132   let t2 = subst level delift sub t2 in\r
133   mk_app t1 t2\r
134  | C | B as t -> t\r
135 and mk_app t1 t2 = if t2 = B || (t1 = delta && t2 = delta) then B\r
136  else match t1 with\r
137  | B -> B\r
138  | L t1 -> subst 0 true (0, t2) t1\r
139  | _ -> A (t1, t2)\r
140 and lift n =\r
141  let rec aux lev =\r
142   function\r
143   | V m -> V (if m >= lev then m + n else m)\r
144   | L t -> L (aux (lev+1) t)\r
145   | A (t1, t2) -> A (aux lev t1, aux lev t2)\r
146   | C  | B as t -> t\r
147  in aux 0\r
148 ;;\r
149 let subst = subst 0 false;;\r
150 \r
151 let subst_in_problem ((v, t) as sub) p =\r
152 print_endline ("-- SUBST " ^ string_of_t (V v) ^ " |-> " ^ string_of_t t);\r
153  {p with\r
154   div=subst sub p.div;\r
155   conv=subst sub p.conv;\r
156   stepped=v::p.stepped;\r
157   sigma=sub::p.sigma}\r
158 ;;\r
159 \r
160 let get_subterms_with_head hd_var =\r
161  let rec aux lev inert_done = function\r
162  | C | V _ | B -> []\r
163  | L t -> aux (lev+1) false t\r
164  | A(t1,t2) as t ->\r
165    let hd_var', n_args' = get_inert t1 in\r
166    if not inert_done && hd_var' = V (hd_var + lev)\r
167     then lift ~-lev t :: aux lev true t1 @ aux lev false t2\r
168     else aux lev true t1 @ aux lev false t2\r
169  in aux 0 false\r
170 ;;\r
171 \r
172 let rec purify = function\r
173  | L t -> Pure.L (purify t)\r
174  | A (t1,t2) -> Pure.A (purify t1, purify t2)\r
175  | V n -> Pure.V n\r
176  | C -> Pure.V (min_int/2)\r
177  | B -> Pure.B\r
178 ;;\r
179 \r
180 let check p sigma =\r
181  print_endline "Checking...";\r
182  let div = purify p.div in\r
183  let conv = purify p.conv in\r
184  let sigma = List.map (fun (v,t) -> v, purify t) sigma in\r
185  let freshno = List.fold_right (max ++ fst) sigma 0 in\r
186  let env = Pure.env_of_sigma freshno sigma in\r
187  assert (Pure.diverged (Pure.mwhd (env,div,[])));\r
188  print_endline " D diverged.";\r
189  assert (not (Pure.diverged (Pure.mwhd (env,conv,[]))));\r
190  print_endline " C converged.";\r
191  ()\r
192 ;;\r
193 \r
194 let sanity p =\r
195  print_endline (string_of_problem p); (* non cancellare *)\r
196  if p.conv = B then problem_fail p "p.conv diverged";\r
197  if p.div = B then raise (Done p.sigma);\r
198  if p.phase = `Two && p.div = delta then raise (Done p.sigma);\r
199  if not (is_inert p.div) then problem_fail p "p.div converged";\r
200  p\r
201 ;;\r
202 \r
203 (* drops the arguments of t after the n-th *)\r
204 (* FIXME! E' usato in modo improprio contando sul fatto\r
205    errato che ritorna un inerte lungo esattamente n *)\r
206 let inert_cut_at n t =\r
207  let rec aux t =\r
208   match t with\r
209   | V _ as t -> 0, t\r
210   | A(t1,_) as t ->\r
211     let k', t' = aux t1 in\r
212      if k' = n then n, t'\r
213       else k'+1, t\r
214   | _ -> assert false\r
215  in snd (aux t)\r
216 ;;\r
217 \r
218 (* return the index of the first argument with a difference\r
219    (the first argument is 0)\r
220    precondition: p.div and t have n+1 arguments\r
221    *)\r
222 let find_eta_difference p t argsno =\r
223  let t = inert_cut_at argsno t in\r
224  let rec aux t u k = match t, u with\r
225  | V _, V _ -> []\r
226  | A(t1,t2), A(u1,u2) ->\r
227     print_endline (string_of_t t2 ^ " vs " ^ string_of_t u2);\r
228     if not (eta_eq t2 u2) then (k-1)::aux t1 u1 (k-1)\r
229     else aux t1 u1 (k-1)\r
230  | _, _ -> assert false\r
231  in aux p.div t argsno\r
232 ;;\r
233 \r
234 let compute_max_lambdas_at hd_var j =\r
235  let rec aux hd = function\r
236  | A(t1,t2) ->\r
237     (if get_inert t1 = (V hd, j)\r
238       then max ( (*FIXME*)\r
239        if is_inert t2 && let hd', j' = get_inert t2 in hd' = V hd\r
240         then let hd', j' = get_inert t2 in j - j'\r
241         else no_leading_lambdas hd_var j t2)\r
242       else id) (max (aux hd t1) (aux hd t2))\r
243  | L t -> aux (hd+1) t\r
244  | V _ | C -> 0\r
245  | _ -> assert false\r
246  in aux hd_var\r
247 ;;\r
248 \r
249 let print_cmd s1 s2 = print_endline (">> " ^ s1 ^ " " ^ s2);;\r
250 \r
251 (* eat the arguments of the divergent and explode.\r
252  It does NOT perform any check, may fail if done unsafely *)\r
253 let eat p =\r
254 print_cmd "EAT" "";\r
255  let var, k = get_inert p.div in\r
256  match var with\r
257  | C | L _ | B | A _ -> assert false\r
258  | V var ->\r
259  let phase = p.phase in\r
260  let p =\r
261   match phase with\r
262   | `One ->\r
263       let n = 1 + max\r
264        (compute_max_lambdas_at var (k-1) p.div)\r
265        (compute_max_lambdas_at var (k-1) p.conv) in\r
266       (* apply fresh vars *)\r
267       let p, t = fold_nat (fun (p, t) _ ->\r
268         let p, v = freshvar p in\r
269         p, A(t, V (v + k))\r
270       ) (p, V 0) n in\r
271       let p = {p with phase=`Two} in\r
272       let t = A(t, delta) in\r
273       let t = fold_nat (fun t m -> A(t, V (k-m))) t (k-1) in\r
274       let subst = var, mk_lams t k in\r
275       let p = subst_in_problem subst p in\r
276       let _, args = get_inert p.div in\r
277       {p with div = inert_cut_at (args-k) p.div}\r
278   | `Two ->\r
279       let subst = var, mk_lams delta k in\r
280       subst_in_problem subst p in\r
281  sanity p\r
282 ;;\r
283 \r
284 (* step on the head of div, on the k-th argument, with n fresh vars *)\r
285 let step k n p =\r
286  let hd, _ = get_inert p.div in\r
287  match hd with\r
288  | C | L _ | B | A _  -> assert false\r
289  | V var ->\r
290 print_cmd "STEP" ("on " ^ string_of_t (V var) ^ " (on " ^ string_of_int (k+1) ^ "th)");\r
291  let p, t = (* apply fresh vars *)\r
292   fold_nat (fun (p, t) _ ->\r
293     let p, v = freshvar p in\r
294     p, A(t, V (v + k + 1))\r
295   ) (p, V 0) n in\r
296  let t = (* apply unused bound variables V_{k-1}..V_1 *)\r
297   fold_nat (fun t m -> A(t, V (k-m+1))) t k in\r
298  let t = mk_lams t (k+1) in (* make leading lambdas *)\r
299  let subst = var, t in\r
300  let p = subst_in_problem subst p in\r
301  sanity p\r
302 ;;\r
303 \r
304 let auto p =\r
305  let rec aux p =\r
306  let hd, n_args = get_inert p.div in\r
307  match hd with\r
308  | C | L _ | B | A _  -> assert false\r
309  | V hd_var ->\r
310  let tms = get_subterms_with_head hd_var p.conv in\r
311  if List.exists (fun t -> snd (get_inert t) >= n_args) tms\r
312   then (\r
313     (* let tms = List.sort (fun t1 t2 -> - compare (snd (get_inert t1)) (snd (get_inert t2))) tms in *)\r
314     List.iter (fun t -> try\r
315       let js = find_eta_difference p t n_args in\r
316       (* print_endline (String.concat ", " (List.map string_of_int js)); *)\r
317       if js = [] then problem_fail p "no eta difference found (div subterm of conv?)";\r
318       let js = List.rev js in\r
319        List.iter\r
320         (fun j ->\r
321          try\r
322           let k = 1 + max\r
323            (compute_max_lambdas_at hd_var j p.div)\r
324             (compute_max_lambdas_at hd_var j p.conv) in\r
325           ignore (aux (step j k p))\r
326          with Fail(_, s) ->\r
327           print_endline ("Backtracking (eta_diff) because: " ^ s)) js;\r
328        raise (Fail(-1, "no eta difference"))\r
329       with Fail(_, s) ->\r
330        print_endline ("Backtracking (get_subterms) because: " ^ s)) tms;\r
331      raise (Fail(-1, "no similar terms"))\r
332    )\r
333   else\r
334     (let phase = p.phase in\r
335      let p = eat p in\r
336      if phase = `Two\r
337       then problem_fail p "Auto.2 did not complete the problem"\r
338       else aux p)\r
339   in\r
340   try\r
341    aux p\r
342   with Done sigma -> sigma\r
343 ;;\r
344 \r
345 let problem_of (label, div, convs, ps, var_names) =\r
346  print_hline ();\r
347  let rec aux lev = function\r
348  | `Lam(_, t) -> L (aux (lev+1) t)\r
349  | `I (v, args) -> Listx.fold_left (fun x y -> mk_app x (aux lev y)) (aux lev (`Var v)) args\r
350  | `Var(v,_) -> if v >= lev && List.nth var_names (v-lev) = "C" then C else V v\r
351  | `N _ | `Match _ -> assert false in\r
352  assert (List.length ps = 0);\r
353  let convs = List.rev convs in\r
354  let conv = List.fold_left (fun x y -> mk_app x (aux 0 (y :> Num.nf))) (V (List.length var_names)) convs in\r
355  let var_names = "@" :: var_names in\r
356  let div = match div with\r
357  | Some div -> aux 0 (div :> Num.nf)\r
358  | None -> assert false in\r
359  let varno = List.length var_names in\r
360  let p = {orig_freshno=varno; freshno=1+varno; div; conv; sigma=[]; stepped=[]; phase=`One} in\r
361  (* initial sanity check *)\r
362  sanity p\r
363 ;;\r
364 \r
365 let solve p =\r
366  if is_stuck p.div then print_endline "!!! div is stuck. Problem was not run !!!"\r
367  else if eta_subterm p.div p.conv\r
368   then print_endline "!!! div is subterm of conv. Problem was not run !!!"\r
369   else check p (auto p)\r
370 ;;\r
371 \r
372 Problems.main (solve ++ problem_of);\r
373 \r
374 (* Example usage of interactive: *)\r
375 \r
376 (* let interactive div conv cmds =\r
377  let p = problem_of div conv in\r
378  try (\r
379  let p = List.fold_left (|>) p cmds in\r
380  let rec f p cmds =\r
381   let nth spl n = int_of_string (List.nth spl n) in\r
382   let read_cmd () =\r
383    let s = read_line () in\r
384    let spl = Str.split (Str.regexp " +") s in\r
385    s, let uno = List.hd spl in\r
386     try if uno = "eat" then eat\r
387     else if uno = "step" then step (nth spl 1) (nth spl 2)\r
388     else failwith "Wrong input."\r
389     with Failure s -> print_endline s; (fun x -> x) in\r
390   let str, cmd = read_cmd () in\r
391   let cmds = (" " ^ str ^ ";")::cmds in\r
392   try\r
393    let p = cmd p in f p cmds\r
394   with\r
395   | Done _ -> print_endline "Done! Commands history: "; List.iter print_endline (List.rev cmds)\r
396  in f p []\r
397  ) with Done _ -> ()\r
398 ;; *)\r
399 \r
400 (* interactive "x y"\r
401  "@ (x x) (y x) (y z)" [step 0 1; step 0 2; eat]\r
402 ;; *)\r