]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/closeCoercionGraph.ml
removed some refinement_toolkit
[helm.git] / components / tactics / closeCoercionGraph.ml
1 (* Copyright (C) 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://helm.cs.unibo.it/
24  *)
25
26 (* $Id: cicCoercion.ml 7077 2006-12-05 15:44:54Z fguidi $ *)
27
28 let debug = false
29 let debug_print s = if debug then prerr_endline (Lazy.force s) else ()
30
31 (* given the new coercion uri from src to tgt returns the list 
32  * of new coercions to create. hte list elements are
33  * (source, list of coercions to follow, target)
34  *)
35 let get_closure_coercions src tgt uri coercions =
36   let eq_carr s t = 
37     try
38       CoercDb.eq_carr s t
39     with
40     | CoercDb.EqCarrNotImplemented _ | CoercDb.EqCarrOnNonMetaClosed -> false
41   in
42   match src,tgt with
43   | CoercDb.Uri _, CoercDb.Uri _ ->
44       let c_from_tgt = 
45         List.filter 
46           (fun (f,t,_) -> eq_carr f tgt (*&& not (eq_carr t src)*)) 
47           coercions 
48       in
49       let c_to_src = 
50         List.filter 
51           (fun (f,t,_) -> eq_carr t src (*&& not (eq_carr f tgt)*)) 
52           coercions 
53       in
54         (HExtlib.flatten_map 
55           (fun (_,t,ul) -> List.map (fun u -> src,[uri; u],t) ul) c_from_tgt) @
56         (HExtlib.flatten_map 
57           (fun (s,_,ul) -> List.map (fun u -> s,[u; uri],tgt) ul) c_to_src) @
58         (HExtlib.flatten_map 
59           (fun (s,_,u1l) ->
60             HExtlib.flatten_map 
61               (fun (_,t,u2l) ->
62                 HExtlib.flatten_map
63                   (fun u1 ->
64                     List.map 
65                       (fun u2 -> (s,[u1;uri;u2],t)) 
66                       u2l)
67                   u1l) 
68               c_from_tgt) 
69           c_to_src)
70   | _ -> [] (* do not close in case source or target is not an indty ?? *)
71 ;;
72
73 let obj_attrs n = [`Class (`Coercion n); `Generated]
74
75 exception UnableToCompose
76
77 (* generate_composite (c2 (c1 s)) in the universe graph univ
78  * both living in the same context and metasenv *)
79 let generate_composite c1 c2 context metasenv univ arity last_lam_with_inn_arg =
80   let module RT = RefinementTool in
81   let c1_ty,univ = CicTypeChecker.type_of_aux' metasenv context c1 univ in
82   let c2_ty,univ = CicTypeChecker.type_of_aux' metasenv context c2 univ in
83   let rec mk_implicits = function
84     | 0 -> [] | n -> (Cic.Implicit None) :: mk_implicits (n-1)
85   in
86   let rec mk_lambda_spline c namer = function
87     | 0 -> c
88     | n -> 
89         Cic.Lambda 
90           (namer n,
91            (Cic.Implicit None), 
92            mk_lambda_spline (CicSubstitution.lift 1 c) namer (n-1))
93   in 
94   let count_saturations_needed t arity = 
95     let rec aux acc n = function
96       | Cic.Prod (name,src, ((Cic.Prod _) as t)) -> 
97           aux (acc@[name]) (n+1) t
98       | _ -> n,acc
99     in
100     let len,names = aux [] 0 t in
101     let len = len - arity in
102     List.fold_left 
103       (fun (n,l) x -> if n < len then n+1,l@[x] else n,l) (0,[]) 
104       names
105   in
106   let compose c1 nc1 c2 nc2 =
107     Cic.Lambda 
108       (Cic.Name "x", (Cic.Implicit None),
109           (Cic.Appl (  CicSubstitution.lift 1 c2 :: mk_implicits nc2 @ 
110             [ Cic.Appl (  CicSubstitution.lift 1 c1 :: mk_implicits nc1 @ 
111              [if last_lam_with_inn_arg then Cic.Rel 1 else Cic.Implicit None])
112             ])))
113   in
114 (*
115   let order_metasenv metasenv = 
116     let module OT = struct type t = int let compare = Pervasives.compare end in
117     let module S = HTopoSort.Make (OT) in
118     let dep i = 
119       let _,_,ty = List.find (fun (j,_,_) -> j=i) metasenv in
120       let metas = List.map fst (CicUtil.metas_of_term ty) in
121       HExtlib.list_uniq (List.sort Pervasives.compare metas)
122     in
123     let om =  
124       S.topological_sort (List.map (fun (i,_,_) -> i) metasenv) dep 
125     in
126     List.map (fun i -> List.find (fun (j,_,_) -> i=j) metasenv) om
127   in 
128 *)
129   let rec create_subst_from_metas_to_rels n = function 
130     | [] -> []
131     | (metano, ctx, ty)::tl -> 
132         (metano,(ctx,Cic.Rel (n+1),ty)) ::
133           create_subst_from_metas_to_rels (n-1) tl
134   in
135   let split_metasenv metasenv n =
136     List.partition (fun (_,ctx,_) -> List.length ctx > n) metasenv
137   in
138   let purge_unused_lambdas metasenv t =
139     let rec aux = function
140         | Cic.Lambda (_, Cic.Meta (i,_), t) when  
141           List.exists (fun (j,_,_) -> j = i) metasenv ->
142             aux (CicSubstitution.subst (Cic.Rel ~-100) t)
143         | Cic.Lambda (name, s, t) -> 
144             Cic.Lambda (name, s, aux t)
145         | t -> t
146     in
147     aux t
148   in
149   let order_body_menv term body_metasenv =
150     let rec purge_lambdas = function
151       | Cic.Lambda (_,_,t) -> purge_lambdas t
152       | t -> t
153     in
154     let skip_appl = function | Cic.Appl l -> List.tl l | _ -> assert false in
155     let metas_that_saturate l =
156       List.fold_left 
157         (fun (acc,n) t ->
158           let metas = CicUtil.metas_of_term t in
159           let metas = List.map fst metas in
160           let metas = 
161             List.filter 
162               (fun i -> List.for_all (fun (j,_) -> j<>i) acc) 
163               metas 
164           in
165           let metas = List.map (fun i -> i,n) metas in
166           metas @ acc, n+1)
167         ([],0) l
168     in
169     let l_c2 = skip_appl (purge_lambdas term) in
170     let l_c1 = 
171       match HExtlib.list_last l_c2 with
172       | Cic.Appl l -> List.tl l
173       | _ -> assert false
174     in
175     (* i should cut off the laet elem of l_c2 *)
176     let meta2no = fst (metas_that_saturate (l_c1 @ l_c2)) in
177     List.sort 
178       (fun (i,ctx1,ty1) (j,ctx1,ty1) -> 
179           try List.assoc i meta2no -  List.assoc j meta2no 
180           with Not_found -> 
181             assert false) 
182       body_metasenv
183   in
184   let namer l n = 
185     let l = List.map (function Cic.Name s -> s | _ -> "A") l in
186     let l = List.fold_left
187       (fun acc s -> 
188         let rec add' s =
189           if List.exists ((=) s) acc then add' (s^"'") else s
190         in
191         acc@[add' s])
192       [] l
193     in
194     let l = List.rev l in 
195     Cic.Name (List.nth l (n-1))
196   in 
197   debug_print (lazy ("\nCOMPOSING"));
198   debug_print (lazy (" c1= "^CicPp.ppterm c1 ^"  :  "^ CicPp.ppterm c1_ty));
199   debug_print (lazy (" c2= "^CicPp.ppterm c2 ^"  :  "^ CicPp.ppterm c2_ty));
200   let saturations_for_c1, names_c1 = count_saturations_needed c1_ty 0 in 
201   let saturations_for_c2, names_c2 = count_saturations_needed c2_ty arity in
202   let c = compose c1 saturations_for_c1 c2 saturations_for_c2 in
203   let spline_len = saturations_for_c1 + saturations_for_c2 in
204   let c = mk_lambda_spline c (namer (names_c1 @ names_c2)) spline_len in
205   debug_print (lazy ("COMPOSTA: " ^ CicPp.ppterm c));
206   let c, metasenv, univ = 
207     try
208       let term, ty, metasenv, ugraph = 
209         CicRefine.type_of_aux' metasenv context c univ
210       in
211       debug_print(lazy("COMPOSED REFINED: "^CicPp.ppterm term));
212 (*       let metasenv = order_metasenv metasenv in *)
213 (*       debug_print(lazy("ORDERED MENV: "^CicMetaSubst.ppmetasenv [] metasenv)); *)
214       let body_metasenv, lambdas_metasenv = 
215         split_metasenv metasenv (spline_len + List.length context)
216       in
217       debug_print(lazy("B_MENV: "^CicMetaSubst.ppmetasenv [] body_metasenv));
218       debug_print(lazy("L_MENV: "^CicMetaSubst.ppmetasenv [] lambdas_metasenv));
219       let body_metasenv = order_body_menv term body_metasenv in
220       debug_print(lazy("ORDERED_B_MENV: "^CicMetaSubst.ppmetasenv [] body_metasenv));
221       let subst = create_subst_from_metas_to_rels spline_len body_metasenv in
222       debug_print (lazy("SUBST: "^CicMetaSubst.ppsubst body_metasenv subst));
223       let term = CicMetaSubst.apply_subst subst term in
224       debug_print (lazy ("COMPOSED SUBSTITUTED: " ^ CicPp.ppterm term));
225       let term, ty, metasenv, ugraph = 
226         CicRefine.type_of_aux' metasenv context term ugraph
227       in
228       let body_metasenv, lambdas_metasenv = 
229         split_metasenv metasenv (spline_len + List.length context)
230       in
231       let term = purge_unused_lambdas lambdas_metasenv term in
232       debug_print (lazy ("COMPOSED: " ^ CicPp.ppterm term));
233       debug_print(lazy("MENV: "^CicMetaSubst.ppmetasenv [] metasenv));
234       term, metasenv, ugraph
235     with
236     | CicRefine.RefineFailure s 
237     | CicRefine.Uncertain s -> debug_print s; 
238         raise UnableToCompose
239   in  
240   c, metasenv, univ 
241 ;;
242
243 let build_obj c univ arity =
244   let c_ty,univ = 
245     try 
246       CicTypeChecker.type_of_aux' [] [] c univ
247     with CicTypeChecker.TypeCheckerFailure s ->
248       debug_print (lazy (Printf.sprintf "Generated composite coercion:\n%s\n%s" 
249         (CicPp.ppterm c) (Lazy.force s)));
250       raise UnableToCompose
251   in
252   let cleaned_ty =
253     FreshNamesGenerator.clean_dummy_dependent_types c_ty 
254   in
255   let obj = Cic.Constant ("xxxx",Some c,cleaned_ty,[],obj_attrs arity) in 
256     obj,univ
257 ;;
258
259 (* removes from l the coercions that are in !coercions *)
260 let filter_duplicates l coercions =
261   List.filter (
262       fun (src,l1,tgt) ->
263         not (List.exists (fun (s,t,l2) -> 
264           CoercDb.eq_carr s src && 
265           CoercDb.eq_carr t tgt &&
266           try 
267             List.for_all2 (fun u1 u2 -> UriManager.eq u1 u2) l1 l2
268           with
269           | Invalid_argument "List.for_all2" -> false)
270         coercions))
271   l
272
273 let mangle s t l = 
274   (*List.fold_left
275     (fun s x -> s ^ "_" ^ x)
276     (s ^ "_OF_" ^ t ^ "_BY" ^ string_of_int (List.length l)) l*)
277   s ^ "_OF_" ^ t
278 ;;
279
280 exception ManglingFailed of string 
281
282 let number_if_already_defined buri name l =
283   let err () =
284     raise 
285       (ManglingFailed 
286         ("Unable to give an altenative name to " ^ buri ^ "/" ^ name ^ ".con"))
287   in
288   let rec aux n =
289     let suffix = if n > 0 then string_of_int n else "" in
290     let suri = buri ^ "/" ^ name ^ suffix ^ ".con" in
291     let uri = UriManager.uri_of_string suri in
292     let retry () = 
293       if n < 100 then 
294         begin
295           HLog.warn ("Uri " ^ suri ^ " already exists.");
296           aux (n+1)
297         end
298       else
299         err ()
300     in
301     if List.exists (UriManager.eq uri) l then retry ()
302     else
303       try
304         let _  = Http_getter.resolve' ~writable:true uri in
305         if Http_getter.exists' uri then retry () else uri
306       with 
307       | Http_getter_types.Key_not_found _ -> uri
308       | Http_getter_types.Unresolvable_URI _ -> assert false
309   in
310   aux 0
311 ;;
312   
313 (* given a new coercion uri from src to tgt returns 
314  * a list of (new coercion uri, coercion obj, universe graph) 
315  *)
316 let close_coercion_graph src tgt uri baseuri =
317   (* check if the coercion already exists *)
318   let coercions = CoercDb.to_list () in
319   let todo_list = get_closure_coercions src tgt uri coercions in
320   let todo_list = filter_duplicates todo_list coercions in
321   try
322     let new_coercions = 
323       List.fold_left 
324         (fun acc (src, l , tgt) ->
325           try 
326             (match l with
327             | [] -> assert false 
328             | he :: tl ->
329                 let arity = match tgt with CoercDb.Fun n -> n | _ -> 0 in
330                 let first_step = 
331                   Cic.Constant ("", 
332                     Some (CoercDb.term_of_carr (CoercDb.Uri he)),
333                     Cic.Sort Cic.Prop, [], obj_attrs arity)
334                 in
335                 let o,_ = 
336                   List.fold_left (fun (o,univ) coer ->
337                     match o with 
338                     | Cic.Constant (_,Some c,_,[],_) ->
339                         let t, menv, univ = 
340                           generate_composite c 
341                             (CoercDb.term_of_carr (CoercDb.Uri coer)) 
342                             [] [] univ arity true
343                         in
344                         assert (menv = []);
345                         build_obj t univ arity
346                     | _ -> assert false 
347                   ) (first_step, CicUniv.empty_ugraph) tl
348                 in
349                 let name_src = CoercDb.name_of_carr src in
350                 let name_tgt = CoercDb.name_of_carr tgt in
351                 let by = List.map UriManager.name_of_uri l in
352                 let name = mangle name_tgt name_src by in
353                 let c_uri = 
354                   number_if_already_defined baseuri name 
355                     (List.map (fun (_,_,u,_) -> u) acc) 
356                 in
357                 let named_obj = 
358                   match o with
359                   | Cic.Constant (_,bo,ty,vl,attrs) ->
360                       Cic.Constant (name,bo,ty,vl,attrs)
361                   | _ -> assert false 
362                 in
363                   (src,tgt,c_uri,named_obj))::acc
364           with UnableToCompose -> acc
365       ) [] todo_list
366     in
367     new_coercions
368   with ManglingFailed s -> HLog.error s; []
369 ;;
370
371 CicCoercion.set_close_coercion_graph close_coercion_graph;;