]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/acic_procedural/acic2Procedural.ml
librarian: improved error detection, bug fix in time comparison functions: now the...
[helm.git] / helm / software / components / acic_procedural / acic2Procedural.ml
1 (* Copyright (C) 2003-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 module C    = Cic
27 module I    = CicInspect
28 module S    = CicSubstitution
29 module TC   = CicTypeChecker 
30 module Un   = CicUniv
31 module UM   = UriManager
32 module Obj  = LibraryObjects
33 module HObj = HelmLibraryObjects
34 module A    = Cic2acic
35 module Ut   = CicUtil
36 module E    = CicEnvironment
37 module Pp   = CicPp
38 module PEH  = ProofEngineHelpers
39 module HEL  = HExtlib
40 module DTI  = DoubleTypeInference
41 module NU   = CicNotationUtil
42 module L    = Librarian
43
44 module Cl   = ProceduralClassify
45 module T    = ProceduralTypes
46 module Cn   = ProceduralConversion
47 module H    = ProceduralHelpers
48
49 type status = {
50    sorts : (C.id, A.sort_kind) Hashtbl.t;
51    types : (C.id, A.anntypes) Hashtbl.t;
52    max_depth: int option;
53    depth: int;
54    context: C.context;
55    case: int list
56 }
57
58 let debug = ref false
59
60 (* helpers ******************************************************************)
61
62 let split2_last l1 l2 =
63 try
64    let n = pred (List.length l1) in
65    let before1, after1 = HEL.split_nth n l1 in
66    let before2, after2 = HEL.split_nth n l2 in
67    before1, before2, List.hd after1, List.hd after2
68 with Invalid_argument _ -> failwith "A2P.split2_last"
69    
70 let string_of_head = function
71    | C.ASort _         -> "sort"
72    | C.AConst _        -> "const"
73    | C.AMutInd _       -> "mutind"
74    | C.AMutConstruct _ -> "mutconstruct"
75    | C.AVar _          -> "var"
76    | C.ARel _          -> "rel"
77    | C.AProd _         -> "prod"
78    | C.ALambda _       -> "lambda"
79    | C.ALetIn _        -> "letin"
80    | C.AFix _          -> "fix"
81    | C.ACoFix _        -> "cofix"
82    | C.AAppl _         -> "appl"
83    | C.ACast _         -> "cast"
84    | C.AMutCase _      -> "mutcase"
85    | C.AMeta _         -> "meta"
86    | C.AImplicit _     -> "implict"
87
88 let next st = {st with depth = succ st.depth}
89
90 let add st entry = {st with context = entry :: st.context}
91
92 let push st = {st with case = 1 :: st.case}
93
94 let inc st =
95    {st with case = match st.case with 
96       | []       -> []
97       | hd :: tl -> succ hd :: tl
98    }
99
100 let case st str =
101    let case = String.concat "." (List.rev_map string_of_int st.case) in
102    Printf.sprintf "case %s: %s" case str
103
104 let test_depth st =
105 try   
106    let msg = Printf.sprintf "Depth %u: " st.depth in
107    match st.max_depth with
108       | None   -> true, "" 
109       | Some d -> if st.depth < d then true, msg else false, "DEPTH EXCEDED: "
110 with Invalid_argument _ -> failwith "A2P.test_depth"
111
112 let is_rewrite_right = function
113    | C.AConst (_, uri, []) ->
114       UM.eq uri HObj.Logic.eq_ind_r_URI || Obj.is_eq_ind_r_URI uri
115    | _                     -> false
116
117 let is_rewrite_left = function
118    | C.AConst (_, uri, []) ->
119       UM.eq uri HObj.Logic.eq_ind_URI || Obj.is_eq_ind_URI uri
120    | _                     -> false
121
122 let is_fwd_rewrite_right hd tl =
123    if is_rewrite_right hd then match List.nth tl 3 with
124       | C.ARel _ -> true
125       | _        -> false
126    else false
127
128 let is_fwd_rewrite_left hd tl =
129    if is_rewrite_left hd then match List.nth tl 3 with
130       | C.ARel _ -> true
131       | _        -> false
132    else false
133
134 let get_inner_types st v =
135 try
136    let id = Ut.id_of_annterm v in
137    try match Hashtbl.find st.types id with
138       | {A.annsynthesized = st; A.annexpected = Some et} -> Some (st, et)
139       | {A.annsynthesized = st; A.annexpected = None}    -> Some (st, st)
140    with Not_found -> None
141 with Invalid_argument _ -> failwith "A2P.get_inner_types"
142 (*
143 let get_inner_sort st v =
144 try
145    let id = Ut.id_of_annterm v in
146    try Hashtbl.find st.sorts id
147    with Not_found -> `Type (CicUniv.fresh())
148 with Invalid_argument _ -> failwith "A2P.get_sort"
149 *)
150 let get_entry st id =
151    let rec aux = function
152       | []                                        -> assert false
153       | Some (C.Name name, e) :: _ when name = id -> e
154       | _ :: tl                                   -> aux tl
155    in
156    aux st.context
157
158 let string_of_atomic = function
159    | C.ARel (_, _, _, s)               -> s
160    | C.AVar (_, uri, _)                -> H.name_of_uri uri None None
161    | C.AConst (_, uri, _)              -> H.name_of_uri uri None None
162    | C.AMutInd (_, uri, i, _)          -> H.name_of_uri uri (Some i) None
163    | C.AMutConstruct (_, uri, i, j, _) -> H.name_of_uri uri (Some i) (Some j)
164    | _                                 -> ""
165
166 let get_sub_names head l =
167    let s = string_of_atomic head in
168    if s = "" then [] else
169    let map (names, i) _ = 
170       let name = Printf.sprintf "%s_%u" s i in name :: names, succ i
171    in
172    let names, _ = List.fold_left map ([], 1) l in 
173    List.rev names
174
175 let get_type msg st t = H.get_type msg st.context (H.cic t) 
176
177 (* proof construction *******************************************************)
178
179 let anonymous_premise = C.Name "PREMISE"
180
181 let mk_exp_args hd tl classes synth =
182    let meta id = C.AImplicit (id, None) in
183    let map v (cl, b) =
184       if I.overlaps synth cl && b then v else meta ""
185    in
186    let rec aux = function
187       | [] -> []
188       | hd :: tl -> if hd = meta "" then aux tl else List.rev (hd :: tl)
189    in
190    let args = T.list_rev_map2 map tl classes in
191    let args = aux args in
192    if args = [] then hd else C.AAppl ("", hd :: args)
193
194 let mk_convert st ?name sty ety note =
195    let e = Cn.hole "" in
196    let csty, cety = H.cic sty, H.cic ety in
197    let script = 
198       if !debug then
199          let sname = match name with None -> "" | Some (id, _) -> id in
200          let note = Printf.sprintf "%s: %s\nSINTH: %s\nEXP: %s"
201             note sname (Pp.ppterm csty) (Pp.ppterm cety)
202          in 
203          [T.Note note]
204       else []
205    in
206    assert (Ut.is_sober st.context csty); 
207    assert (Ut.is_sober st.context cety);
208    if Ut.alpha_equivalence csty cety then script else 
209    let sty, ety = H.acic_bc st.context sty, H.acic_bc st.context ety in
210    match name with
211       | None         -> T.Change (sty, ety, None, e, "") :: script
212       | Some (id, i) -> 
213          begin match get_entry st id with
214             | C.Def _  -> assert false (* T.ClearBody (id, "") :: script *)
215             | C.Decl _ -> 
216                T.Change (ety, sty, Some (id, Some id), e, "") :: script 
217          end
218
219 let convert st ?name v = 
220    match get_inner_types st v with
221       | None            -> 
222          if !debug then [T.Note "NORMAL: NO INNER TYPES"] else []
223       | Some (sty, ety) -> mk_convert st ?name sty ety "NORMAL"
224
225 let convert_elim st ?name t v pattern =
226    match t, get_inner_types st t, get_inner_types st v with
227       | _, None, _
228       | _, _, None                                            -> [(* T.Note "ELIM: NO INNER TYPES"*)]
229       | C.AAppl (_, hd :: tl), Some (tsty, _), Some (vsty, _) ->
230          let where = List.hd (List.rev tl) in
231          let cty = Cn.elim_inferred_type 
232              st.context (H.cic vsty) (H.cic where) (H.cic hd) (H.cic pattern)
233          in
234          mk_convert st ?name (Cn.fake_annotate "" st.context cty) tsty "ELIM"
235       | _, Some _, Some _                                     -> assert false
236           
237 let get_intro = function 
238    | C.Anonymous -> None
239    | C.Name s    -> Some s
240
241 let mk_preamble st what script =
242    convert st what @ script   
243
244 let mk_arg st = function
245    | C.ARel (_, _, i, name) as what -> convert st ~name:(name, i) what
246    | _                              -> []
247
248 let mk_fwd_rewrite st dtext name tl direction v t ity =
249    let compare premise = function
250       | None   -> true
251       | Some s -> s = premise
252    in
253    assert (List.length tl = 6);
254    let what, where, predicate = List.nth tl 5, List.nth tl 3, List.nth tl 2 in
255    let e = Cn.mk_pattern 1 predicate in
256    if (Cn.does_not_occur e) then st, [] else 
257    match where with
258       | C.ARel (_, _, i, premise) as w ->
259 (*         let _script = convert_elim st ~name:(premise, i) v w e in *) 
260          let script name =
261             let where = Some (premise, name) in
262             let script = mk_arg st what @ mk_arg st w (* @ script *) in
263             T.Rewrite (direction, what, where, e, dtext) :: script
264          in
265          if DTI.does_not_occur (succ i) (H.cic t) || compare premise name then
266             {st with context = Cn.clear st.context premise}, script name
267          else begin
268             assert (Ut.is_sober st.context (H.cic ity));
269             let ity = H.acic_bc st.context ity in
270             let br1 = [T.Id ""] in
271             let br2 = List.rev (T.Apply (w, "assumption") :: script None) in
272             let text = "non linear rewrite" in
273             st, [T.Branch ([br2; br1], ""); T.Cut (name, ity, text)]
274          end
275       | _                         -> assert false
276
277 let mk_rewrite st dtext where qs tl direction t = 
278    assert (List.length tl = 5);
279    let predicate = List.nth tl 2 in
280    let e = Cn.mk_pattern 1 predicate in
281    let script = [T.Branch (qs, "")] in
282    if (Cn.does_not_occur e) then script else 
283 (*   let script = convert_elim st t t e in *)
284    T.Rewrite (direction, where, None, e, dtext) :: script
285
286 let rec proc_lambda st what name v t =
287    let name = match name with
288       | C.Anonymous -> H.mk_fresh_name st.context anonymous_premise
289       | name        -> name
290    in
291    let entry = Some (name, C.Decl (H.cic v)) in
292    let intro = get_intro name in
293    let script = proc_proof (add st entry) t in
294    let script = T.Intros (Some 1, [intro], "") :: script in
295    mk_preamble st what script
296
297 and proc_letin st what name v w t =
298    let intro = get_intro name in
299    let proceed, dtext = test_depth st in
300    let script = if proceed then 
301       let st, hyp, rqv = match get_inner_types st v with
302          | Some (ity, _) ->
303             let st, rqv = match v with
304                | C.AAppl (_, hd :: tl) when is_fwd_rewrite_right hd tl ->
305                   mk_fwd_rewrite st dtext intro tl true v t ity
306                | C.AAppl (_, hd :: tl) when is_fwd_rewrite_left hd tl  ->
307                   mk_fwd_rewrite st dtext intro tl false v t ity
308                | v                                                     ->
309                   assert (Ut.is_sober st.context (H.cic ity));
310                   let ity = H.acic_bc st.context ity in
311                   let qs = [proc_proof (next st) v; [T.Id ""]] in
312                   st, [T.Branch (qs, ""); T.Cut (intro, ity, dtext)]
313             in
314             st, C.Decl (H.cic ity), rqv
315          | None          ->
316             st, C.Def (H.cic v, H.cic w), [T.LetIn (intro, v, dtext)]
317       in
318       let entry = Some (name, hyp) in
319       let qt = proc_proof (next (add st entry)) t in
320       List.rev_append rqv qt      
321    else
322       [T.Apply (what, dtext)]
323    in
324    mk_preamble st what script
325
326 and proc_rel st what = 
327    let _, dtext = test_depth st in
328    let text = "assumption" in
329    let script = [T.Apply (what, dtext ^ text)] in 
330    mk_preamble st what script
331
332 and proc_mutconstruct st what = 
333    let _, dtext = test_depth st in
334    let script = [T.Apply (what, dtext)] in 
335    mk_preamble st what script
336
337 and proc_const st what = 
338    let _, dtext = test_depth st in
339    let script = [T.Apply (what, dtext)] in 
340    mk_preamble st what script
341
342 and proc_appl st what hd tl =
343    let proceed, dtext = test_depth st in
344    let script = if proceed then
345       let ty = match get_inner_types st hd with
346          | Some (ity, _) -> H.cic ity 
347          | None          -> get_type "TC2" st hd 
348       in
349       let classes, rc = Cl.classify st.context ty in
350       let goal_arity, goal = match get_inner_types st what with
351          | None            -> 0, None
352          | Some (ity, ety) -> 
353            snd (PEH.split_with_whd (st.context, H.cic ity)), Some (H.cic ety)
354       in
355       let parsno, argsno = List.length classes, List.length tl in
356       let decurry = parsno - argsno in
357       let diff = goal_arity - decurry in
358       if diff < 0 then failwith (Printf.sprintf "NOT TOTAL: %i %s |--- %s" diff (Pp.ppcontext st.context) (Pp.ppterm (H.cic hd)));
359       let classes = Cl.adjust st.context tl ?goal classes in
360       let rec mk_synth a n =
361          if n < 0 then a else mk_synth (I.S.add n a) (pred n)
362       in
363       let synth = mk_synth I.S.empty decurry in
364       let text = "" (* Printf.sprintf "%u %s" parsno (Cl.to_string h) *) in
365       let script = List.rev (mk_arg st hd) in
366       match rc with
367          | Some (i, j, uri, tyno) ->
368             let classes2, tl2, _, where = split2_last classes tl in
369             let script2 = List.rev (mk_arg st where) @ script in
370             let synth2 = I.S.add 1 synth in
371             let names = H.get_ind_names uri tyno in
372             let qs = proc_bkd_proofs (next st) synth2 names classes2 tl2 in
373             if List.length qs <> List.length names then
374                let qs = proc_bkd_proofs (next st) synth [] classes tl in
375                let hd = mk_exp_args hd tl classes synth in
376                script @ [T.Apply (hd, dtext ^ text); T.Branch (qs, "")]
377             else if is_rewrite_right hd then 
378                script2 @ mk_rewrite st dtext where qs tl2 false what
379             else if is_rewrite_left hd then 
380                script2 @ mk_rewrite st dtext where qs tl2 true what
381             else
382                let predicate = List.nth tl2 (parsno - i) in
383                let e = Cn.mk_pattern j predicate in
384                let using = Some hd in
385                (* convert_elim st what what e @ *) script2 @ 
386                [T.Elim (where, using, e, dtext ^ text); T.Branch (qs, "")]
387          | None        ->
388             let names = get_sub_names hd tl in
389             let qs = proc_bkd_proofs (next st) synth names classes tl in
390             let hd = mk_exp_args hd tl classes synth in
391             script @ [T.Apply (hd, dtext ^ text); T.Branch (qs, "")]
392    else
393       [T.Apply (what, dtext)]
394    in
395    mk_preamble st what script
396
397 and proc_other st what =
398    let _, dtext = test_depth st in
399    let text = Printf.sprintf "%s: %s" "UNEXPANDED" (string_of_head what) in
400    let script = [T.Apply (what, dtext ^ text)] in 
401    mk_preamble st what script
402
403 and proc_proof st t = 
404    let f st =
405       let xtypes, note = match get_inner_types st t with
406          | Some (it, et) -> Some (H.cic it, H.cic et), 
407           (Printf.sprintf "\nInferred: %s\nExpected: %s"
408           (Pp.ppterm (H.cic it)) (Pp.ppterm (H.cic et))) 
409          | None          -> None, "\nNo types"
410       in
411       let context, _clears = Cn.get_clears st.context (H.cic t) xtypes in
412       {st with context = context}
413    in
414    match t with
415       | C.ALambda (_, name, w, t) as what   -> proc_lambda (f st) what name w t
416       | C.ALetIn (_, name, v, w, t) as what -> proc_letin (f st) what name v w t
417       | C.ARel _ as what                    -> proc_rel (f st) what
418       | C.AMutConstruct _ as what           -> proc_mutconstruct (f st) what
419       | C.AConst _ as what                  -> proc_const (f st) what
420       | C.AAppl (_, hd :: tl) as what       -> proc_appl (f st) what hd tl
421       | what                                -> proc_other (f st) what
422
423 and proc_bkd_proofs st synth names classes ts =
424 try 
425    let get_names b = ref (names, if b then push st else st) in
426    let get_note f b names = 
427       match !names with 
428          | [], st       -> f st
429          | "" :: tl, st -> names := tl, st; f st
430          | hd :: tl, st -> 
431             let note = case st hd in
432             names := tl, inc st; 
433             if b then T.Note note :: f st else f st
434    in
435    let _, dtext = test_depth st in   
436    let aux (inv, _) v =
437       if I.overlaps synth inv then None else
438       if I.S.is_empty inv then Some (get_note (fun st -> proc_proof st v)) else
439       Some (get_note (fun _ -> [T.Apply (v, dtext ^ "dependent")]))
440    in   
441    let ps = T.list_map2_filter aux classes ts in
442    let b = List.length ps > 1 in
443    let names = get_names b in
444    List.rev_map (fun f -> f b names) ps
445
446 with Invalid_argument s -> failwith ("A2P.proc_bkd_proofs: " ^ s)
447
448 (* object costruction *******************************************************)
449
450 let th_flavours = [`Theorem; `Lemma; `Remark; `Fact]
451
452 let def_flavours = [`Definition]
453
454 let get_flavour ?flavour attrs =
455    let rec aux = function
456       | []               -> List.hd th_flavours
457       | `Flavour fl :: _ -> fl
458       | _ :: tl          -> aux tl
459    in
460    match flavour with
461       | Some fl -> fl
462       | None    -> aux attrs
463
464 let proc_obj ?flavour st = function
465    | C.AConstant (_, _, s, Some v, t, [], attrs)         ->
466       begin match get_flavour ?flavour attrs with
467          | flavour when List.mem flavour th_flavours  ->
468             let ast = proc_proof st v in
469             let steps, nodes = T.count_steps 0 ast, T.count_nodes 0 ast in
470             let text = Printf.sprintf "tactics: %u\nnodes: %u" steps nodes in
471             T.Statement (flavour, Some s, t, None, "") :: ast @ [T.Qed text]
472          | flavour when List.mem flavour def_flavours ->
473             [T.Statement (flavour, Some s, t, Some v, "")]
474          | _                                  ->
475             failwith "not a theorem, definition, axiom or inductive type"
476       end
477    | C.AConstant (_, _, s, None, t, [], attrs)           ->
478       [T.Statement (`Axiom, Some s, t, None, "")]
479    | C.AInductiveDefinition (_, types, [], lpsno, attrs) ->
480       [T.Inductive (types, lpsno, "")] 
481    | _                                          ->
482       failwith "not a theorem, definition, axiom or inductive type"
483
484 (* interface functions ******************************************************)
485
486 let procedural_of_acic_object ~ids_to_inner_sorts ~ids_to_inner_types ?depth
487    ?flavour prefix anobj = 
488    let st = {
489       sorts       = ids_to_inner_sorts;
490       types       = ids_to_inner_types;
491       max_depth   = depth;
492       depth       = 0;
493       context     = [];
494       case        = []
495    } in
496    L.time_stamp "P : LEVEL 2  ";
497    HLog.debug "Procedural: level 2 transformation";
498    let steps = proc_obj st ?flavour anobj in
499    L.time_stamp "P : RENDERING";
500    HLog.debug "Procedural: grafite rendering";
501    let r = List.rev (T.render_steps [] steps) in
502    L.time_stamp "P : DONE     "; r
503
504 let procedural_of_acic_term ~ids_to_inner_sorts ~ids_to_inner_types ?depth
505    prefix context annterm = 
506    let st = {
507       sorts       = ids_to_inner_sorts;
508       types       = ids_to_inner_types;
509       max_depth   = depth;
510       depth       = 0;
511       context     = context;
512       case        = []
513    } in
514    HLog.debug "Procedural: level 2 transformation";
515    let steps = proc_proof st annterm in
516    HLog.debug "Procedural: grafite rendering";
517    List.rev (T.render_steps [] steps)