]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_refiner/nCicUnifHint.ml
1ea21dbcc0832d78551a956c8e660bcbbb877bdc
[helm.git] / helm / software / components / ng_refiner / nCicUnifHint.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 (* $Id: nCicRefiner.mli 9227 2008-11-21 16:00:06Z tassi $ *)
13
14 let debug s = prerr_endline (Lazy.force s);;
15 let debug _ = ();;
16
17 module HOT : Set.OrderedType 
18 with type t = int * NCic.term  * NCic.term * NCic.term = 
19   struct
20         (* precedence, skel1, skel2, term *)
21         type t = int * NCic.term * NCic.term * NCic.term
22         let compare = Pervasives.compare
23   end
24
25 module EOT : Set.OrderedType 
26 with type t = int * NCic.term =
27   struct
28         type t = int * NCic.term 
29         let compare = Pervasives.compare
30   end
31
32 module HintSet = Set.Make(HOT)
33 module EqSet = Set.Make(EOT)
34
35 module HDB = 
36   Discrimination_tree.Make(NDiscriminationTree.NCicIndexable)(HintSet)
37
38 module EQDB = 
39   Discrimination_tree.Make(NDiscriminationTree.NCicIndexable)(EqSet)
40
41 type db =
42   HDB.t * (* hint database: (dummy A B)[?] |-> \forall X.(summy a b)[X] *)
43   EQDB.t (* eqclass DB: A[?] |-> \forall X.B[X] and viceversa *)
44
45 exception HintNotValid
46
47 let skel_dummy = NCic.Implicit `Type;;
48
49 class type g_status =
50  object
51   method uhint_db: db
52  end
53
54 class status =
55  object
56   val db = HDB.empty, EQDB.empty
57   method uhint_db = db
58   method set_uhint_db v = {< db = v >}
59   method set_unifhint_status
60    : 'status. #g_status as 'status -> 'self
61    = fun o -> {< db = o#uhint_db >}
62  end
63
64 let dummy = NCic.Const (NReference.reference_of_string "cic:/dummy_conv.dec");;
65 let pair t1 t2 = (NCic.Appl [dummy;t1;t2]) ;;
66
67 let index_hint hdb context t1 t2 precedence =
68   assert (
69     (match t1 with
70     | NCic.Meta _ | NCic.Appl (NCic.Meta _ :: _) -> false | _ -> true)
71     &&
72     (match t2 with
73     | NCic.Meta _ | NCic.Appl (NCic.Meta _ :: _) -> false | _ -> true)
74   );
75   (* here we do not use skel_dummy since it could cause an assert false in 
76    * the subst function that lives in the kernel *)
77   let hole = NCic.Meta (-1,(0,NCic.Irl 0)) in
78   let t1_skeleton = 
79     List.fold_left (fun t _ -> NCicSubstitution.subst hole t) t1 context
80   in
81   let t2_skeleton = 
82     List.fold_left (fun t _ -> NCicSubstitution.subst hole t) t2 context
83   in
84   let rec cleanup_skeleton () = function
85     | NCic.Meta _ -> skel_dummy 
86     | t -> NCicUtils.map (fun _ () -> ()) () cleanup_skeleton t
87   in
88   let t1_skeleton = cleanup_skeleton () t1_skeleton in
89   let t2_skeleton = cleanup_skeleton () t2_skeleton in
90   let src = pair t1_skeleton t2_skeleton in
91   let ctx2abstractions context t = 
92     List.fold_left 
93      (fun t (n,e) -> 
94         match e with
95         | NCic.Decl ty -> NCic.Prod (n,ty,t)
96         | NCic.Def (b,ty) -> NCic.LetIn (n,ty,b,t))
97       t context 
98   in
99   let data_hint = 
100     precedence, t1_skeleton, t2_skeleton, ctx2abstractions context (pair t1 t2)
101   in
102   let data_t1 = t2_skeleton in
103   let data_t2 = t1_skeleton in
104
105   debug(lazy ("INDEXING: " ^ 
106     NCicPp.ppterm ~metasenv:[] ~subst:[] ~context:[] src ^ " |==> " ^
107     NCicPp.ppterm ~metasenv:[] ~subst:[] ~context:[] 
108       (let _,x,_,_ = data_hint in x)));
109
110   hdb#set_uhint_db (
111       HDB.index (fst (hdb#uhint_db)) src data_hint,
112       EQDB.index  
113         (EQDB.index (snd (hdb#uhint_db)) t2_skeleton (precedence, data_t2))
114         t1_skeleton (precedence, data_t1))
115 ;;
116
117 let add_user_provided_hint db t precedence =
118   let c, a, b = 
119     let rec aux ctx = function
120       | NCic.Appl l ->
121           (match List.rev l with
122           | b::a::_ -> 
123               if
124                  let ty_a = 
125                    NCicTypeChecker.typeof ~metasenv:[] ~subst:[] ctx a
126                  in
127                  let ty_b = 
128                    NCicTypeChecker.typeof ~metasenv:[] ~subst:[] ctx b
129                  in
130                  NCicReduction.are_convertible 
131                   ~metasenv:[] ~subst:[] ctx ty_a ty_b              
132                  &&     
133                  NCicReduction.are_convertible 
134                   ~metasenv:[] ~subst:[] ctx a b              
135               then ctx, a, b
136               else raise HintNotValid
137           | _ -> assert false)
138       | NCic.Prod (n,s,t) -> aux ((n, NCic.Decl s) :: ctx) t
139       | NCic.LetIn (n,ty,t,b) -> aux  ((n, NCic.Def (t,ty)) :: ctx) b
140       | _ -> assert false
141     in
142       aux [] t
143   in
144    index_hint db c a b precedence
145 ;;
146
147 let db () = 
148   let combine f l =
149    List.flatten
150      (let rec aux = function 
151       | u1 :: tl -> List.map (f u1) tl :: aux tl
152       | [] -> []
153      in aux l)
154   in
155   let mk_hint (u1,_,_) (u2,_,_) = 
156     let l = OCic2NCic.convert_obj u1 
157       (fst (CicEnvironment.get_obj CicUniv.oblivion_ugraph u1)) in
158     let r = OCic2NCic.convert_obj u2 
159       (fst (CicEnvironment.get_obj CicUniv.oblivion_ugraph u2)) in
160     match List.hd l,List.hd r with
161     | (_,h1,_,_,NCic.Constant (_,_,Some l,_,_)), 
162       (_,h2,_,_,NCic.Constant (_,_,Some r,_,_)) ->
163         let rec aux ctx t1 t2 =
164           match t1, t2 with
165           | NCic.Lambda (n1,s1,b1), NCic.Lambda(_,s2,b2) ->
166               if NCicReduction.are_convertible ~subst:[] ~metasenv:[] ctx s1 s2
167               then aux ((n1, NCic.Decl s1) :: ctx) b1 b2
168               else []
169           | b1,b2 -> 
170               if NCicReduction.are_convertible ~subst:[] ~metasenv:[] ctx b1 b2 
171               then begin
172               let rec mk_rels =  
173                  function 0 -> [] | n -> NCic.Rel n :: mk_rels (n-1) 
174               in 
175               let n1 = 
176                 NCic.Appl (NCic.Const(OCic2NCic.reference_of_ouri 
177                  u1 (NReference.Def h1)) :: mk_rels (List.length ctx))
178               in
179               let n2 = 
180                 NCic.Appl (NCic.Const(OCic2NCic.reference_of_ouri 
181                  u2 (NReference.Def h2)) :: mk_rels (List.length ctx))
182               in
183                 [ctx,b1,b2; ctx,b1,n2; ctx,n1,b2; ctx,n1,n2]
184               end else []
185         in
186           aux [] l r
187     | _ -> []
188   in
189   let _hints = 
190     List.fold_left 
191       (fun acc (_,_,l) -> 
192           acc @ 
193           if List.length l > 1 then 
194            combine mk_hint l
195           else [])
196       [] (CoercDb.to_list (CoercDb.dump ()))
197   in
198   prerr_endline "MISTERO";
199   assert false (* ERA
200   List.fold_left 
201     (fun db -> function 
202      | (ctx,b1,b2) -> index_hint db ctx b1 b2 0)
203     !user_db (List.flatten hints)
204 *)
205 ;;
206
207 let saturate ?(delta=0) metasenv subst context ty goal_arity =
208  assert (goal_arity >= 0);
209   let rec aux metasenv = function
210    | NCic.Prod (name,s,t) as ty ->
211        let metasenv1, _, arg,_ = 
212           NCicMetaSubst.mk_meta ~attrs:[`Name name] metasenv context
213            (`WithType s) in
214        let t, metasenv1, args, pno = 
215            aux metasenv1 (NCicSubstitution.subst arg t) 
216        in
217        if pno + 1 = goal_arity then
218          ty, metasenv, [], goal_arity+1
219        else
220          t, metasenv1, arg::args, pno+1
221    | ty ->
222         match NCicReduction.whd ~subst context ty ~delta with
223         | NCic.Prod _ as ty -> aux metasenv ty
224         | _ -> ty, metasenv, [], 0 (* differs from the other impl in this line*)
225   in
226   let res, newmetasenv, arguments, _ = aux metasenv ty in
227   res, newmetasenv, arguments
228 ;;
229
230 let eq_class_of hdb t1 = 
231  let eq_class =
232   if NDiscriminationTree.NCicIndexable.path_string_of t1 = 
233      [Discrimination_tree.Variable]
234   then
235     [] (* if the trie is unable to handle the key, we skip the query since
236           it sould retulr the whole content of the trie *)
237   else
238     let candidates = EQDB.retrieve_unifiables (snd hdb#uhint_db) t1 in
239     let candidates = EqSet.elements candidates in
240     let candidates = List.sort (fun (x,_) (y,_) -> compare x y) candidates in
241     List.map snd candidates
242  in
243  debug(lazy("eq_class of: " ^ NCicPp.ppterm ~metasenv:[] ~context:[] ~subst:[]
244    t1 ^ " is\n" ^ String.concat "\n" 
245    (List.map (NCicPp.ppterm ~subst:[] ~metasenv:[] ~context:[]) eq_class)));
246  eq_class   
247 ;;
248
249 let look_for_hint hdb metasenv subst context t1 t2 =
250   if NDiscriminationTree.NCicIndexable.path_string_of t1 =
251           [Discrimination_tree.Variable] || 
252      NDiscriminationTree.NCicIndexable.path_string_of t2 =
253              [Discrimination_tree.Variable] then [] else begin
254
255   debug(lazy ("KEY1: "^NCicPp.ppterm ~metasenv ~subst ~context t1));
256   debug(lazy ("KEY2: "^NCicPp.ppterm ~metasenv ~subst ~context t2));
257 (*
258   HDB.iter hdb
259    (fun p ds ->
260       prerr_endline ("ENTRY: " ^
261       NDiscriminationTree.NCicIndexable.string_of_path p ^ " |--> " ^
262       String.concat "|" (List.map (NCicPp.ppterm ~metasenv:[] ~subst:[]
263       ~context:[]) (HintSet.elements ds))));
264 *)
265   let candidates1 = HDB.retrieve_unifiables (fst hdb#uhint_db) (pair t1 t2) in
266   let candidates2 = HDB.retrieve_unifiables (fst hdb#uhint_db) (pair t2 t1) in
267   let candidates1 = 
268     List.map (fun (prec,_,_,ty) -> 
269        prec,true,saturate ~delta:max_int metasenv subst context ty 0) 
270     (HintSet.elements candidates1) 
271   in
272   let candidates2 = 
273     List.map (fun (prec,_,_,ty) -> 
274        prec,false,saturate ~delta:max_int metasenv subst context ty 0) 
275     (HintSet.elements candidates2) 
276   in
277   let rc = 
278     List.map
279       (fun (p,b,(t,m,_)) ->
280          let rec aux () (m,l as acc) = function
281            | NCic.Meta _ as t -> acc, t
282            | NCic.LetIn (name,ty,bo,t) ->
283                let m,_,i,_=
284                  NCicMetaSubst.mk_meta ~attrs:[`Name name] m context
285                   (`WithType ty)in
286                let t = NCicSubstitution.subst i t in
287                aux () (m, (i,bo)::l) t
288            | t -> NCicUntrusted.map_term_fold_a (fun _ () -> ()) () aux acc t
289          in
290          let (m,l), t = aux () (m,[]) t in
291          p,b,(t,m,l))
292    (candidates1 @ candidates2)
293   in
294   let rc = 
295   List.map
296    (function 
297     | (prec,true,(NCic.Appl [_; t1; t2],metasenv,l))-> prec,metasenv,(t1,t2),l
298     | (prec,false,(NCic.Appl [_; t1; t2],metasenv,l))-> prec,metasenv,(t2,t1),l
299     | _ -> assert false)
300     rc
301   in
302   let rc = 
303     List.sort (fun (x,_,_,_) (y,_,_,_) -> Pervasives.compare x y) rc
304   in 
305   let rc = List.map (fun (_,x,y,z) -> x,y,z) rc in
306
307   debug(lazy ("Hints:"^
308     String.concat "\n" (List.map 
309      (fun (metasenv, (t1, t2), premises) ->
310          ("\t" ^ String.concat ";  "
311                (List.map (fun (a,b) -> 
312                   NCicPp.ppterm ~margin:max_int ~metasenv ~subst ~context a ^
313                   " =?= "^
314                   NCicPp.ppterm ~margin:max_int ~metasenv ~subst ~context b)
315                premises) ^     
316              "  ==> "^
317              NCicPp.ppterm ~margin:max_int ~metasenv ~subst ~context t1 ^
318              " = "^NCicPp.ppterm ~margin:max_int ~metasenv ~subst ~context t2))
319     rc)));
320
321   rc
322              end
323 ;;
324
325 let pp_hint t p =
326   let context, t = 
327      let rec aux ctx = function
328        | NCic.Prod (name, ty, rest) -> aux ((name, NCic.Decl ty) :: ctx) rest
329        | t -> ctx, t
330      in
331       aux [] t
332   in
333   let recproblems, concl = 
334     let rec aux ctx = function
335       | NCic.LetIn (name,ty,bo,rest) -> aux ((name, NCic.Def(bo,ty))::ctx) rest
336       | t -> ctx, t
337     in
338       aux [] t
339   in
340   let buff = Buffer.create 100 in
341   let fmt = Format.formatter_of_buffer buff in
342 (*
343   F.fprintf "@[<hov>"
344    F.fprintf "@[<hov>"
345 (*    pp_ctx [] context *)
346    F.fprintf "@]"
347   F.fprintf "@;"
348    F.fprintf "@[<hov>"
349 (*    pp_ctx context recproblems *)
350    F.fprintf "@]"
351   F.fprintf "\vdash@;";
352     NCicPp.ppterm ~fmt ~context:(recproblems@context) ~subst:[] ~metasenv:[];
353   F.fprintf "@]"
354   F.fprintf formatter "@?";
355   prerr_endline (Buffer.contents buff);
356 *)
357 ()
358 ;;
359
360 let generate_dot_file status fmt =
361   let module Pp = GraphvizPp.Dot in
362   let h_db, _ = status#uhint_db in
363   let names = ref [] in
364   let id = ref 0 in
365   let mangle l =
366     try List.assoc l !names
367     with Not_found ->
368       incr id;
369       names := (l,"node"^string_of_int!id) :: !names;
370       List.assoc l !names
371   in
372   let nodes = ref [] in
373   let edges = ref [] in
374   HDB.iter h_db (fun _key dataset -> 
375       List.iter
376         (fun (precedence, l,r, hint) ->
377             let l = 
378               Str.global_substitute (Str.regexp "\n") (fun _ -> "")
379                (NCicPp.ppterm 
380                 ~margin:max_int ~metasenv:[] ~context:[] ~subst:[] l) 
381             in
382             let r = 
383               Str.global_substitute (Str.regexp "\n") (fun _ -> "")
384                (NCicPp.ppterm 
385                 ~margin:max_int ~metasenv:[] ~context:[] ~subst:[] r)
386             in
387             let shint =  "???" (*
388               string_of_int precedence ^ "..." ^
389               Str.global_substitute (Str.regexp "\n") (fun _ -> "")
390                (NCicPp.ppterm 
391                 ~margin:max_int ~metasenv:[] ~context:[] ~subst:[] hint)*)
392             in
393             nodes := (mangle l,l) :: (mangle r,r) :: !nodes;
394             edges := (mangle l, mangle r, shint, precedence, hint) :: !edges)
395         (HintSet.elements dataset);
396     );
397   List.iter (fun x, l -> Pp.node x ~attrs:["label",l] fmt) !nodes;
398   List.iter (fun x, y, l, _, _ -> 
399       Pp.raw (Printf.sprintf "%s -- %s [ label=\"%s\" ];\n" x y "?") fmt)
400   !edges;
401   edges := List.sort (fun (_,_,_,p1,_) (_,_,_,p2,_) -> p1 - p2) !edges;
402   List.iter (fun x, y, _, p, l -> pp_hint l p) !edges;
403 ;;