]> matita.cs.unibo.it Git - fireball-separation.git/blob - ocaml/simple.ml
34f9f72efa14cd7cf614eb316be2f5c1894c3578
[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 * t list (*garbage*))\r
14  | C (* constant *)\r
15 ;;\r
16 \r
17 let delta = L(A(V 0, V 0),[]);;\r
18 \r
19 let rec is_stuck = function\r
20  | C -> true\r
21  | A(t,_) -> is_stuck t\r
22  | _ -> false\r
23 ;;\r
24 \r
25 let eta_eq' =\r
26  let rec aux l1 l2 t1 t2 =\r
27   let stuck1, stuck2 = is_stuck t1, is_stuck t2 in\r
28   match t1, t2 with\r
29   | _, _ when not stuck1 && stuck2 -> false\r
30   | _, _ when stuck1 -> true\r
31   | L t1, L t2 -> aux l1 l2 (fst t1) (fst t2)\r
32   | L t1, t2 -> aux l1 (l2+1) (fst t1) t2\r
33   | t1, L t2 -> aux (l1+1) l2 t1 (fst t2)\r
34   | V a, V b -> a + l1 = b + l2\r
35   | A(t1,t2), A(u1,u2) -> aux l1 l2 t1 u1 && aux l1 l2 t2 u2\r
36   | _, _ -> false\r
37  in aux ;;\r
38 let eta_eq = eta_eq' 0 0;;\r
39 \r
40 (* is arg1 eta-subterm of arg2 ? *)\r
41 let eta_subterm u =\r
42  let rec aux lev t = if t = C then false else (eta_eq' lev 0 u t || match t with\r
43  | L(t,g) -> List.exists (aux (lev+1)) (t::g)\r
44  | A(t1, t2) -> aux lev t1 || aux lev t2\r
45  | _ -> false) in\r
46  aux 0\r
47 ;;\r
48 \r
49 (* does NOT lift the argument *)\r
50 let mk_lams = fold_nat (fun x _ -> L(x,[])) ;;\r
51 \r
52 let string_of_t =\r
53   let string_of_bvar =\r
54    let bound_vars = ["x"; "y"; "z"; "w"; "q"] in\r
55    let bvarsno = List.length bound_vars in\r
56    fun nn -> if nn < bvarsno then List.nth bound_vars nn else "x" ^ (string_of_int (nn - bvarsno + 1)) in\r
57   let rec string_of_term_w_pars level = function\r
58     | V v -> if v >= level then "`" ^ string_of_int (v-level) else\r
59        string_of_bvar (level - v-1)\r
60     | C -> "C"\r
61     | A _\r
62     | L _ as t -> "(" ^ string_of_term_no_pars level t ^ ")"\r
63   and string_of_term_no_pars_app level = function\r
64     | A(t1,t2) -> string_of_term_no_pars_app level t1 ^ " " ^ string_of_term_w_pars level t2\r
65     | _ as t -> string_of_term_w_pars level t\r
66   and string_of_term_no_pars level = function\r
67     | L(t,g) -> "λ" ^ string_of_bvar level ^ ". " ^ string_of_term_no_pars (level+1) t\r
68        ^ (if g = [] then "" else String.concat ", " ("" :: List.map (string_of_term_w_pars (level+1)) g))\r
69     | _ as t -> string_of_term_no_pars_app level t\r
70   in string_of_term_no_pars 0\r
71 ;;\r
72 \r
73 type problem = {\r
74    orig_freshno: int\r
75  ; freshno : int\r
76  ; label : string\r
77  ; div : t\r
78  ; conv : t\r
79  ; sigma : (var * t) list (* substitutions *)\r
80 }\r
81 \r
82 let string_of_problem p =\r
83  let lines = [\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 B;;\r
91 exception Done of (var * t) list (* substitution *);;\r
92 exception Unseparable of string;;\r
93 exception Backtrack of string;;\r
94 \r
95 let rec try_all label f = function\r
96  | x::xs -> (try f x with Backtrack _ -> try_all label f xs)\r
97  | [] -> raise (Backtrack label)\r
98 ;;\r
99 \r
100 let problem_fail p reason =\r
101  print_endline "!!!!!!!!!!!!!!! FAIL !!!!!!!!!!!!!!!";\r
102  print_endline (string_of_problem p);\r
103  failwith reason\r
104 ;;\r
105 \r
106 let freshvar ({freshno} as p) =\r
107  {p with freshno=freshno+1}, freshno+1\r
108 ;;\r
109 \r
110 (* CSC: rename? is an applied C an inert?\r
111    is_inert and get_inert work inconsistently *)\r
112 let rec is_inert =\r
113  function\r
114  | A(t,_) -> is_inert t\r
115  | V _ -> true\r
116  | C\r
117  | L _ -> false\r
118 ;;\r
119 \r
120 let rec is_constant =\r
121  function\r
122     C -> true\r
123   | V _ -> false\r
124   | A(t,_)\r
125   | L(t,_) -> is_constant t\r
126 ;;\r
127 \r
128 let rec get_inert = function\r
129  | V _ | C as t -> (t,0)\r
130  | A(t, _) -> let hd,args = get_inert t in hd,args+1\r
131  | _ -> assert false\r
132 ;;\r
133 \r
134 let args_of_inert =\r
135  let rec aux acc =\r
136   function\r
137    | V _ | C -> acc\r
138    | A(t, a) -> aux (a::acc) t\r
139    | _ -> assert false\r
140  in\r
141   aux []\r
142 ;;\r
143 \r
144 (* precomputes the number of leading lambdas in a term,\r
145    after replacing _v_ w/ a term starting with n lambdas *)\r
146 let rec no_leading_lambdas v n = function\r
147  | L(t,_) -> 1 + no_leading_lambdas (v+1) n t\r
148  | A _ as t -> let v', m = get_inert t in if V v = v' then max 0 (n - m) else 0\r
149  | V v' -> if v = v' then n else 0\r
150  | C -> 0\r
151 ;;\r
152 \r
153 let rec subst level delift sub =\r
154  function\r
155  | V v -> (if v = level + fst sub then lift level (snd sub) else V (if delift && v > level then v-1 else v)), []\r
156  | L x -> let t, g = subst_in_lam (level+1) delift sub x in L(t, g), []\r
157  | A (t1,t2) ->\r
158   let t1, g1 = subst level delift sub t1 in\r
159   let t2, g2 = subst level delift sub t2 in\r
160   let t3, g3 = mk_app t1 t2 in\r
161   t3, g1 @ g2 @ g3\r
162  | C -> C, []\r
163 and subst_in_lam level delift sub (t, g) =\r
164   let t', g' = subst level delift sub t in\r
165   let g'' = List.fold_left\r
166    (fun xs t ->\r
167      let x,y = subst level delift sub t in\r
168      (x :: y @ xs)) g' g in t', g''\r
169 and mk_app t1 t2 = if t1 = delta && t2 = delta then raise B\r
170  else match t1 with\r
171  | L x -> subst_in_lam 0 true (0, t2) x\r
172  | _ -> A (t1, t2), []\r
173 and lift n =\r
174  let rec aux lev =\r
175   function\r
176   | V m -> V (if m >= lev then m + n else m)\r
177   | L(t,g) -> L (aux (lev+1) t, List.map (aux (lev+1)) g)\r
178   | A (t1, t2) -> A (aux lev t1, aux lev t2)\r
179   | C -> C\r
180  in aux 0\r
181 ;;\r
182 let subst = subst 0 false;;\r
183 \r
184 let subst_in_problem ((v, t) as sub) p =\r
185 print_endline ("-- SUBST " ^ string_of_t (V v) ^ " |-> " ^ string_of_t t);\r
186  let sigma = sub :: p.sigma in\r
187  let div, g = try subst sub p.div with B -> raise (Done sigma) in\r
188  assert (g = []);\r
189  let conv, f = try subst sub p.conv with B -> raise (Backtrack "p.conv diverged") in\r
190  assert (g = []);\r
191  {p with div; conv; sigma}\r
192 ;;\r
193 \r
194 let get_subterms_with_head hd_var =\r
195  let rec aux lev inert_done g = function\r
196  | L(t,g') -> List.fold_left (aux (lev+1) false) g (t::g')\r
197  | C | V _ -> g\r
198  | A(t1,t2) as t ->\r
199    let hd_var', n_args' = get_inert t1 in\r
200    if not inert_done && hd_var' = V (hd_var + lev)\r
201     then lift ~-lev t :: aux lev false (aux lev true g t1) t2\r
202     else                 aux lev false (aux lev true g t1) t2\r
203  in aux 0 false []\r
204 ;;\r
205 \r
206 let purify =\r
207  let rec aux = function\r
208  | L(t,g) ->\r
209     let t = aux (lift (List.length g) t) in\r
210     let t = List.fold_left (fun t g -> Pure.A(Pure.L t, aux g)) t g in\r
211     Pure.L t\r
212  | A (t1,t2) -> Pure.A (aux t1, aux t2)\r
213  | V n -> Pure.V (n)\r
214  | C -> Pure.V (min_int/2)\r
215  in aux\r
216 ;;\r
217 \r
218 let check p sigma =\r
219  print_endline "Checking...";\r
220  let div = purify p.div in\r
221  let conv = purify p.conv in\r
222  let sigma = List.map (fun (v,t) -> v, purify t) sigma in\r
223  let freshno = List.fold_right (max ++ fst) sigma 0 in\r
224  let env = Pure.env_of_sigma freshno sigma in\r
225  (if not (Pure.diverged (Pure.mwhd (env,div,[])))\r
226   then failwith "D converged in Pure");\r
227  print_endline "- D diverged.";\r
228  (if Pure.diverged (Pure.mwhd (env,conv,[]))\r
229   then failwith "C diverged in Pure");\r
230  print_endline "- C converged.";\r
231  ()\r
232 ;;\r
233 \r
234 let sanity p =\r
235  print_endline (string_of_problem p); (* non cancellare *)\r
236  if not (is_inert p.div) then raise (Backtrack "p.div converged");\r
237  (* Trailing constant args can be removed because do not contribute to eta-diff *)\r
238  let rec remove_trailing_constant_args = function\r
239  | A(t1, t2) when is_constant t2 -> remove_trailing_constant_args t1\r
240  | _ as t -> t in\r
241  let p = {p with div=remove_trailing_constant_args p.div} in\r
242  p\r
243 ;;\r
244 \r
245 (* drops the arguments of t after the n-th *)\r
246 let inert_cut_at n t =\r
247  let rec aux t =\r
248   match t with\r
249   | V _ as t -> 0, t\r
250   | A(t1,_) as t ->\r
251     let k', t' = aux t1 in\r
252      if k' = n then n, t'\r
253       else k'+1, t\r
254   | _ -> assert false\r
255  in snd (aux t)\r
256 ;;\r
257 \r
258 (* return the index of the first argument with a difference\r
259    (the first argument is 0) *)\r
260 let find_eta_difference p t =\r
261  let divargs = args_of_inert p.div in\r
262  let conargs = args_of_inert t in\r
263  let rec range i j =\r
264   if j = -1 then [] else i :: range (i+1) (j-1) in\r
265  let rec aux k divargs conargs =\r
266   match divargs,conargs with\r
267      [],conargs -> range k (List.length conargs)\r
268    | _::_,[] -> [k]\r
269    | t1::divargs,t2::conargs ->\r
270       (if not (eta_eq t1 t2) then [k] else []) @ aux (k+1) divargs conargs\r
271  in\r
272   aux 0 divargs conargs\r
273 ;;\r
274 \r
275 let compute_max_lambdas_at hd_var j =\r
276  let rec aux hd = function\r
277  | A(t1,t2) ->\r
278     (if get_inert t1 = (V hd, j)\r
279       then max ( (*FIXME*)\r
280        if is_inert t2 && let hd', j' = get_inert t2 in hd' = V hd\r
281         then let hd', j' = get_inert t2 in j - j'\r
282         else no_leading_lambdas hd_var j t2)\r
283       else id) (max (aux hd t1) (aux hd t2))\r
284  | L(t,_) -> aux (hd+1) t\r
285  | V _ | C -> 0\r
286  in aux hd_var\r
287 ;;\r
288 \r
289 let print_cmd s1 s2 = print_endline (">> " ^ s1 ^ " " ^ s2);;\r
290 \r
291 (* returns Some i if i is the smallest integer s.t. p holds for the i-th\r
292    element of the list in input *)\r
293 let smallest_such_that p =\r
294  let rec aux i =\r
295   function\r
296      [] -> None\r
297    | hd::_ when (print_endline (string_of_t hd) ; p hd) -> Some i\r
298    | _::tl -> aux (i+1) tl\r
299  in\r
300   aux 0\r
301 ;;\r
302 \r
303 (* step on the head of div, on the k-th argument, with n fresh vars *)\r
304 let step k n p =\r
305  let hd, _ = get_inert p.div in\r
306  match hd with\r
307  | C | L _ | A _  -> assert false\r
308  | V var ->\r
309 print_cmd "STEP" ("on " ^ string_of_t (V var) ^ " (on " ^ string_of_int (k+1) ^ "th)");\r
310  let p, t = (* apply fresh vars *)\r
311   fold_nat (fun (p, t) _ ->\r
312     let p, v = freshvar p in\r
313     p, A(t, V (v + k + 1))\r
314   ) (p, V 0) n in\r
315  let t = (* apply unused bound variables V_{k-1}..V_1 *)\r
316   fold_nat (fun t m -> A(t, V (k-m+1))) t k in\r
317  let t = mk_lams t (k+1) in (* make leading lambdas *)\r
318  let subst = var, t in\r
319  let p = subst_in_problem subst p in\r
320  sanity p\r
321 ;;\r
322 \r
323 let finish p =\r
324  (* one-step version of eat *)\r
325  let compute_max_arity =\r
326    let rec aux n = function\r
327    | A(t1,t2) -> max (aux (n+1) t1) (aux 0 t2)\r
328    | L(t,g) -> List.fold_right (max ++ (aux 0)) (t::g) 0\r
329    | _ -> n\r
330  in aux 0 in\r
331 print_cmd "FINISH" "";\r
332  (* First, a step on the last argument of the divergent.\r
333     Because of the sanity check, it will never be a constant term. *)\r
334  let div_hd, div_nargs = get_inert p.div in\r
335  let div_hd = match div_hd with V n -> n | _ -> assert false in\r
336  let j = div_nargs - 1 in\r
337  let arity = compute_max_arity p.conv in\r
338  let n = 1 + arity + max\r
339   (compute_max_lambdas_at div_hd j p.div)\r
340   (compute_max_lambdas_at div_hd j p.conv) in\r
341  let p = step j n p in\r
342  (* Now, find first argument of div that is a variable never applied anywhere.\r
343  It must exist because of some invariant, since we just did a step,\r
344  and because of the arity of the divergent *)\r
345  let div_hd, div_nargs = get_inert p.div in\r
346  let div_hd = match div_hd with V n -> n | _ -> assert false in\r
347  let rec aux m = function\r
348  | A(t, V delta_var) ->\r
349    if delta_var <> div_hd && get_subterms_with_head delta_var p.conv = []\r
350    then m, delta_var\r
351    else aux (m-1) t\r
352  | A(t,_) -> aux (m-1) t\r
353  | _ -> assert false in\r
354  let m, delta_var = aux div_nargs p.div in\r
355  let p = subst_in_problem (delta_var, delta) p in\r
356  let p = subst_in_problem (div_hd, mk_lams delta (m-1)) p in\r
357  sanity p\r
358 ;;\r
359 \r
360 let auto p =\r
361  let rec aux p =\r
362  let hd, n_args = get_inert p.div in\r
363  match hd with\r
364  | C | L _ | A _  -> assert false\r
365  | V hd_var ->\r
366  let tms = get_subterms_with_head hd_var p.conv in\r
367  if List.exists (fun t -> snd (get_inert t) >= n_args) tms\r
368   then (\r
369     (* let tms = List.sort (fun t1 t2 -> - compare (snd (get_inert t1)) (snd (get_inert t2))) tms in *)\r
370     try_all "no similar terms" (fun t ->\r
371       let js = find_eta_difference p t in\r
372       (* print_endline (String.concat ", " (List.map string_of_int js)); *)\r
373       let js = List.rev js in\r
374        try_all "no eta difference"\r
375         (fun j ->\r
376           let k = 1 + max\r
377            (compute_max_lambdas_at hd_var j p.div)\r
378             (compute_max_lambdas_at hd_var j p.conv) in\r
379           aux (step j k p)) js) tms\r
380    )\r
381   else\r
382     problem_fail (finish p) "Finish did not complete the problem"\r
383   in\r
384   try\r
385    aux p\r
386   with Done sigma -> sigma\r
387 ;;\r
388 \r
389 let problem_of (label, div, convs, ps, var_names) =\r
390  print_hline ();\r
391  let rec aux lev = function\r
392  | `Lam(_, t, g) -> L (aux (lev+1) t, List.map (aux (lev+1)) g)\r
393  | `I (v, args) -> Listx.fold_left (fun x y -> fst (mk_app x (aux lev y))) (aux lev (`Var v)) args\r
394  | `Var(v,_) -> if v >= lev && List.nth var_names (v-lev) = "C" then C else V v\r
395  | `N _ | `Match _ -> assert false in\r
396  assert (List.length ps = 0);\r
397  let convs = List.rev convs in\r
398  let conv = List.fold_left (fun x y -> fst (mk_app x (aux 0 (y :> Num.nf)))) (V (List.length var_names)) convs in\r
399  let var_names = "@" :: var_names in\r
400  let div = match div with\r
401  | Some div -> aux 0 (div :> Num.nf)\r
402  | None -> assert false in\r
403  let varno = List.length var_names in\r
404  {orig_freshno=varno; freshno=1+varno; div; conv; sigma=[]; label}\r
405 ;;\r
406 \r
407 let solve p =\r
408  let c = if String.length p.label > 0 then String.sub (p.label) 0 1 else "" in\r
409  let module M = struct exception Okay end in\r
410  try\r
411   if eta_subterm p.div p.conv\r
412   then raise (Unseparable "div is subterm of conv")\r
413   else\r
414    let p = sanity p (* initial sanity check *) in\r
415    check p (auto p);\r
416    raise M.Okay\r
417  with\r
418   | M.Okay -> if c = "?" then\r
419     failwith "The problem succeeded, but was supposed to be unseparable"\r
420   | e when c = "!" ->\r
421     failwith ("The problem was supposed to be separable, but: "^Printexc.to_string e)\r
422   | e ->\r
423     print_endline ("The problem failed, as expected ("^Printexc.to_string e^")")\r
424 ;;\r
425 \r
426 Problems.main (solve ++ problem_of);\r
427 \r
428 (* Example usage of interactive: *)\r
429 \r
430 (* let interactive div conv cmds =\r
431  let p = problem_of div conv in\r
432  try (\r
433  let p = List.fold_left (|>) p cmds in\r
434  let rec f p cmds =\r
435   let nth spl n = int_of_string (List.nth spl n) in\r
436   let read_cmd () =\r
437    let s = read_line () in\r
438    let spl = Str.split (Str.regexp " +") s in\r
439    s, let uno = List.hd spl in\r
440     try if uno = "eat" then eat\r
441     else if uno = "step" then step (nth spl 1) (nth spl 2)\r
442     else failwith "Wrong input."\r
443     with Failure s -> print_endline s; (fun x -> x) in\r
444   let str, cmd = read_cmd () in\r
445   let cmds = (" " ^ str ^ ";")::cmds in\r
446   try\r
447    let p = cmd p in f p cmds\r
448   with\r
449   | Done _ -> print_endline "Done! Commands history: "; List.iter print_endline (List.rev cmds)\r
450  in f p []\r
451  ) with Done _ -> ()\r
452 ;; *)\r
453 \r
454 (* interactive "x y"\r
455  "@ (x x) (y x) (y z)" [step 0 1; step 0 2; eat]\r
456 ;; *)\r