]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_omdoc/cic2content.ml
2749708d2018ec609e8132f689d02f40ad9e781a
[helm.git] / helm / ocaml / cic_omdoc / cic2content.ml
1 (* Copyright (C) 2000, 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 (**************************************************************************)
27 (*                                                                        *)
28 (*                           PROJECT HELM                                 *)
29 (*                                                                        *)
30 (*                Andrea Asperti <asperti@cs.unibo.it>                    *)
31 (*                             16/62003                                   *)
32 (*                                                                        *)
33 (**************************************************************************)
34
35 (* e se mettessi la conversione di BY nell'apply_context ? *)
36 (* sarebbe carino avere l'invariante che la proof2pres
37 generasse sempre prove con contesto vuoto *)
38  
39 let gen_id seed =
40  let res = "p" ^ string_of_int !seed in
41   incr seed ;
42   res
43 ;;
44
45 let name_of = function
46     Cic.Anonymous -> None
47   | Cic.Name b -> Some b;;
48  
49 exception Not_a_proof;;
50 exception NotImplemented;;
51 exception NotApplicable;;
52    
53 (* we do not care for positivity, here, that in any case is enforced by
54    well typing. Just a brutal search *)
55
56 let rec occur uri = 
57   let module C = Cic in
58   function
59       C.Rel _ -> false
60     | C.Var _ -> false
61     | C.Meta _ -> false
62     | C.Sort _ -> false
63     | C.Implicit -> raise NotImplemented
64     | C.Prod (_,s,t) -> (occur uri s) or (occur uri t)
65     | C.Cast (te,ty) -> (occur uri te)
66     | C.Lambda (_,s,t) -> (occur uri s) or (occur uri t) (* or false ?? *)
67     | C.LetIn (_,s,t) -> (occur uri s) or (occur uri t)
68     | C.Appl l -> 
69         List.fold_left 
70           (fun b a -> 
71              if b then b  
72              else (occur uri a)) false l
73     | C.Const (_,_) -> false
74     | C.MutInd (uri1,_,_) -> if uri = uri1 then true else false
75     | C.MutConstruct (_,_,_,_) -> false
76     | C.MutCase _ -> false (* presuming too much?? *)
77     | C.Fix _ -> false (* presuming too much?? *)
78     | C.CoFix (_,_) -> false (* presuming too much?? *)
79 ;;
80
81 let get_id = 
82   let module C = Cic in
83   function
84       C.ARel (id,_,_,_) -> id
85     | C.AVar (id,_,_) -> id
86     | C.AMeta (id,_,_) -> id
87     | C.ASort (id,_) -> id
88     | C.AImplicit _ -> raise NotImplemented
89     | C.AProd (id,_,_,_) -> id
90     | C.ACast (id,_,_) -> id
91     | C.ALambda (id,_,_,_) -> id
92     | C.ALetIn (id,_,_,_) -> id
93     | C.AAppl (id,_) -> id
94     | C.AConst (id,_,_) -> id
95     | C.AMutInd (id,_,_,_) -> id
96     | C.AMutConstruct (id,_,_,_,_) -> id
97     | C.AMutCase (id,_,_,_,_,_) -> id
98     | C.AFix (id,_,_) -> id
99     | C.ACoFix (id,_,_) -> id
100 ;;
101
102 let test_for_lifting ~ids_to_inner_types = 
103   let module C = Cic in
104   let module C2A = Cic2acic in
105   (* atomic terms are never lifted, according to my policy *)
106   function
107       C.ARel (id,_,_,_) -> false
108     | C.AVar (id,_,_) -> false
109     | C.AMeta (id,_,_) -> false
110     | C.ASort (id,_) -> false
111     | C.AImplicit _ -> raise NotImplemented
112     | C.AProd (id,_,_,_) -> false
113     | C.ACast (id,_,_) -> 
114          (try 
115             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
116             true;
117           with Not_found -> false)
118     | C.ALambda (id,_,_,_) -> 
119          (try 
120             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
121             true;
122           with Not_found -> false)
123     | C.ALetIn (id,_,_,_) -> 
124          (try 
125             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
126             true;
127           with Not_found -> false)
128     | C.AAppl (id,_) ->
129          (try 
130             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
131             true;
132           with Not_found -> false) 
133     | C.AConst (id,_,_) -> 
134          (try 
135             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
136             true;
137           with Not_found -> false) 
138     | C.AMutInd (id,_,_,_) -> false
139     | C.AMutConstruct (id,_,_,_,_) -> 
140        (try 
141             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
142             true;
143           with Not_found -> false)
144         (* oppure: false *)
145     | C.AMutCase (id,_,_,_,_,_) ->
146          (try 
147             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
148             true;
149           with Not_found -> false)
150     | C.AFix (id,_,_) ->
151           (try 
152             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
153             true;
154           with Not_found -> false)
155     | C.ACoFix (id,_,_) ->
156          (try 
157             ignore (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized;
158             true;
159           with Not_found -> false)
160 ;;
161
162 let build_args seed l subproofs ~ids_to_inner_types ~ids_to_inner_sorts =
163   let module C = Cic in
164   let module K = Content in
165   let rec aux l subrpoofs =
166     match l with
167       [] -> []
168     | t::l1 -> 
169         if (test_for_lifting t ~ids_to_inner_types) then
170           (match subproofs with
171              [] -> assert false
172            | p::tl -> 
173               let new_arg = 
174                 K.Premise
175                   { K.premise_id = gen_id seed;
176                     K.premise_xref = p.K.proof_id;
177                     K.premise_binder = p.K.proof_name;
178                     K.premise_n = None
179                   }
180                 in new_arg::(aux l1 tl))
181         else 
182           let hd = 
183             (match t with 
184                C.ARel (idr,idref,n,b) ->
185                  let sort = 
186                    (try Hashtbl.find ids_to_inner_sorts idr 
187                     with Not_found -> "Type") in 
188                  if sort ="Prop" then 
189                     K.Premise 
190                       { K.premise_id = gen_id seed;
191                         K.premise_xref = idr;
192                         K.premise_binder = Some b;
193                         K.premise_n = Some n
194                       }
195                  else (K.Term t)
196              | _ -> (K.Term t)) in 
197           hd::(aux l1 subproofs)
198   in aux l subproofs
199 ;;
200
201 (* transform a proof p into a proof list, concatenating the last 
202 conclude element to the apply_context list, in case context is
203 empty. Otherwise, it just returns [p] *)
204
205 let flat seed p = 
206  let module K = Content in
207   if (p.K.proof_context = []) then
208     if p.K.proof_apply_context = [] then [p]
209     else 
210       let p1 =
211         { p with
212           K.proof_context = []; 
213           K.proof_apply_context = []
214         } in
215       p.K.proof_apply_context@[p1]
216   else 
217     [p]
218 ;;
219
220 let rec serialize seed = 
221   function 
222       [] -> []
223     | p::tl -> (flat seed p)@(serialize seed tl);;
224
225 (* top_down = true if the term is a LAMBDA or a decl *)
226 let generate_conversion seed top_down id inner_proof ~ids_to_inner_types =
227  let module C2A = Cic2acic in
228  let module K = Content in
229  let exp = (try ((Hashtbl.find ids_to_inner_types id).C2A.annexpected)
230             with Not_found -> None)
231  in
232  match exp with
233      None -> inner_proof
234    | Some expty ->
235        if inner_proof.K.proof_conclude.K.conclude_method = "Intros+LetTac" then
236          { K.proof_name = None ;
237             K.proof_id   = gen_id seed;
238             K.proof_context = [] ;
239             K.proof_apply_context = [];
240             K.proof_conclude = 
241               { K.conclude_id = gen_id seed; 
242                 K.conclude_aref = id;
243                 K.conclude_method = "TD_Conversion";
244                 K.conclude_args = [K.ArgProof inner_proof];
245                 K.conclude_conclusion = Some expty
246               };
247           }
248         else
249           { K.proof_name = None ;
250             K.proof_id   = gen_id seed;
251             K.proof_context = [] ;
252             K.proof_apply_context = [inner_proof];
253             K.proof_conclude = 
254               { K.conclude_id = gen_id seed; 
255                 K.conclude_aref = id;
256                 K.conclude_method = "BU_Conversion";
257                 K.conclude_args =  
258                  [K.Premise 
259                   { K.premise_id = gen_id seed;
260                     K.premise_xref = inner_proof.K.proof_id; 
261                     K.premise_binder = None;
262                     K.premise_n = None
263                   } 
264                  ]; 
265                 K.conclude_conclusion = Some expty
266               };
267           }
268 ;;
269
270 let generate_exact seed t id name ~ids_to_inner_types =
271   let module C2A = Cic2acic in
272   let module K = Content in
273     { K.proof_name = name;
274       K.proof_id   = id ;
275       K.proof_context = [] ;
276       K.proof_apply_context = [];
277       K.proof_conclude = 
278         { K.conclude_id = gen_id seed; 
279           K.conclude_aref = id;
280           K.conclude_method = "Exact";
281           K.conclude_args = [K.Term t];
282           K.conclude_conclusion = 
283               try Some (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
284               with Not_found -> None
285         };
286     }
287 ;;
288
289 let generate_intros_let_tac seed id n s is_intro inner_proof name ~ids_to_inner_types =
290   let module C2A = Cic2acic in
291   let module C = Cic in
292   let module K = Content in
293     { K.proof_name = name;
294       K.proof_id   = id ;
295       K.proof_context = [] ;
296       K.proof_apply_context = [];
297       K.proof_conclude = 
298         { K.conclude_id = gen_id seed; 
299           K.conclude_aref = id;
300           K.conclude_method = "Intros+LetTac";
301           K.conclude_args = [K.ArgProof inner_proof];
302           K.conclude_conclusion = 
303             try Some 
304              (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
305             with Not_found -> 
306               (match inner_proof.K.proof_conclude.K.conclude_conclusion with
307                  None -> None
308               | Some t -> 
309                   if is_intro then Some (C.AProd ("gen"^id,n,s,t))
310                   else Some (C.ALetIn ("gen"^id,n,s,t)))
311         };
312     }
313 ;;
314
315 let build_decl_item seed id n s ~ids_to_inner_sorts =
316  let module K = Content in
317   try
318    let sort = Hashtbl.find ids_to_inner_sorts (Cic2acic.source_id_of_id id) in
319    if sort = "Prop" then
320       `Hypothesis
321         { K.dec_name = name_of n;
322           K.dec_id = gen_id seed; 
323           K.dec_inductive = false;
324           K.dec_aref = id;
325           K.dec_type = s
326         }
327    else 
328       `Declaration
329         { K.dec_name = name_of n;
330           K.dec_id = gen_id seed; 
331           K.dec_inductive = false;
332           K.dec_aref = id;
333           K.dec_type = s
334         }
335   with
336    Not_found -> assert false
337 ;;
338
339 let rec build_def_item seed id n t ~ids_to_inner_sorts ~ids_to_inner_types =
340  let module K = Content in
341   try
342    let sort = Hashtbl.find ids_to_inner_sorts id in
343    if sort = "Prop" then
344       `Proof (acic2content seed ?name:(name_of n) ~ids_to_inner_sorts  ~ids_to_inner_types t)
345    else 
346       `Definition
347         { K.def_name = name_of n;
348           K.def_id = gen_id seed; 
349           K.def_aref = id;
350           K.def_term = t
351         }
352   with
353    Not_found -> assert false
354
355 (* the following function must be called with an object of sort
356 Prop. For debugging purposes this is tested again, possibly raising an 
357 Not_a_proof exception *)
358
359 and acic2content seed ?name ~ids_to_inner_sorts ~ids_to_inner_types t =
360   let rec aux ?name t =
361   let module C = Cic in
362   let module K = Content in
363   let module C2A = Cic2acic in
364   let t1 =
365     match t with 
366       C.ARel (id,idref,n,b) as t ->
367         let sort = Hashtbl.find ids_to_inner_sorts id in
368         if sort = "Prop" then
369           generate_exact seed t id name ~ids_to_inner_types 
370         else raise Not_a_proof
371     | C.AVar (id,uri,exp_named_subst) as t ->
372         let sort = Hashtbl.find ids_to_inner_sorts id in
373         if sort = "Prop" then
374           generate_exact seed t id name ~ids_to_inner_types 
375         else raise Not_a_proof
376     | C.AMeta (id,n,l) as t ->
377         let sort = Hashtbl.find ids_to_inner_sorts id in
378         if sort = "Prop" then
379           generate_exact seed t id name ~ids_to_inner_types 
380         else raise Not_a_proof
381     | C.ASort (id,s) -> raise Not_a_proof
382     | C.AImplicit _ -> raise NotImplemented
383     | C.AProd (_,_,_,_) -> raise Not_a_proof
384     | C.ACast (id,v,t) -> aux v
385     | C.ALambda (id,n,s,t) -> 
386         let sort = Hashtbl.find ids_to_inner_sorts id in
387         if sort = "Prop" then 
388           let proof = aux t in
389           let proof' = 
390             if proof.K.proof_conclude.K.conclude_method = "Intros+LetTac" then
391                match proof.K.proof_conclude.K.conclude_args with
392                  [K.ArgProof p] -> p
393                | _ -> assert false                  
394             else proof in
395           let proof'' =
396             { proof' with
397               K.proof_name = None;
398               K.proof_context = 
399                 (build_decl_item seed id n s ids_to_inner_sorts)::
400                   proof'.K.proof_context
401             }
402           in
403           generate_intros_let_tac seed id n s true proof'' name ~ids_to_inner_types
404         else raise Not_a_proof 
405     | C.ALetIn (id,n,s,t) ->
406         let sort = Hashtbl.find ids_to_inner_sorts id in
407         if sort = "Prop" then 
408           let proof = aux t in
409           let proof' = 
410             if proof.K.proof_conclude.K.conclude_method = "Intros+LetTac" then
411                match proof.K.proof_conclude.K.conclude_args with
412                  [K.ArgProof p] -> p
413                | _ -> assert false                  
414             else proof in
415           let proof'' =
416             { proof' with
417                K.proof_name = name;
418                K.proof_context = 
419                  ((build_def_item seed id n s ids_to_inner_sorts 
420                    ids_to_inner_types):> Cic.annterm K.in_proof_context_element)
421                  ::proof'.K.proof_context;
422             }
423           in
424           generate_intros_let_tac seed id n s false proof'' name ~ids_to_inner_types
425         else raise Not_a_proof 
426     | C.AAppl (id,li) ->
427         (try rewrite 
428            seed name id li ids_to_inner_types ids_to_inner_sorts
429          with NotApplicable ->
430          try inductive 
431           seed name id li ids_to_inner_types ids_to_inner_sorts
432          with NotApplicable ->
433           let args_to_lift = 
434             List.filter (test_for_lifting ~ids_to_inner_types) li in
435           let subproofs = 
436             match args_to_lift with
437                 [_] -> List.map aux args_to_lift 
438             | _ -> List.map (aux ~name:"H") args_to_lift in
439           let args = build_args seed li subproofs 
440                  ~ids_to_inner_types ~ids_to_inner_sorts in
441             { K.proof_name = name;
442               K.proof_id   = gen_id seed;
443               K.proof_context = [];
444               K.proof_apply_context = serialize seed subproofs;
445               K.proof_conclude = 
446                 { K.conclude_id = gen_id seed;
447                   K.conclude_aref = id;
448                   K.conclude_method = "Apply";
449                   K.conclude_args = args;
450                   K.conclude_conclusion = 
451                      try Some 
452                        (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
453                      with Not_found -> None
454                  };
455             })
456     | C.AConst (id,uri,exp_named_subst) as t ->
457         let sort = Hashtbl.find ids_to_inner_sorts id in
458         if sort = "Prop" then
459           generate_exact seed t id name ~ids_to_inner_types
460         else raise Not_a_proof
461     | C.AMutInd (id,uri,i,exp_named_subst) -> raise Not_a_proof
462     | C.AMutConstruct (id,uri,i,j,exp_named_subst) as t ->
463         let sort = Hashtbl.find ids_to_inner_sorts id in
464         if sort = "Prop" then 
465           generate_exact seed t id name ~ids_to_inner_types
466         else raise Not_a_proof
467     | C.AMutCase (id,uri,typeno,ty,te,patterns) ->
468         let teid = get_id te in
469         let pp = List.map (function p -> (K.ArgProof (aux p))) patterns in
470         (match 
471           (try Some (Hashtbl.find ids_to_inner_types teid).C2A.annsynthesized
472            with Not_found -> None)
473          with
474              Some tety -> (* we must lift up the argument *)
475                let p = (aux te) in
476                { K.proof_name = Some "name";
477                  K.proof_id   = gen_id seed;
478                  K.proof_context = []; 
479                  K.proof_apply_context = flat seed p;
480                  K.proof_conclude = 
481                    { K.conclude_id = gen_id seed; 
482                      K.conclude_aref = id;
483                      K.conclude_method = "Case";
484                      K.conclude_args = (K.Term ty)::(K.Term te)::pp;
485                      K.conclude_conclusion = 
486                        try Some 
487                         (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
488                        with Not_found -> None  
489                    }
490                }
491            | None ->
492                { K.proof_name = name;
493                  K.proof_id   = gen_id seed;
494                  K.proof_context = []; 
495                  K.proof_apply_context = [];
496                  K.proof_conclude = 
497                    { K.conclude_id = gen_id seed; 
498                      K.conclude_aref = id;
499                      K.conclude_method = "Case";
500                      K.conclude_args = (K.Term ty)::(K.Term te)::pp;
501                      K.conclude_conclusion = 
502                        try Some 
503                         (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
504                        with Not_found -> None 
505                    }
506                }
507          )  
508     | C.AFix (id, no, funs) -> 
509         let proofs = 
510           List.map 
511             (function (_,name,_,_,bo) -> `Proof (aux ~name bo)) funs in
512         let decreasing_args = 
513           List.map (function (_,_,n,_,_) -> n) funs in
514         let jo = 
515           { K.joint_id = gen_id seed;
516             K.joint_kind = `Recursive decreasing_args;
517             K.joint_defs = proofs
518           } 
519         in
520           { K.proof_name = name;
521             K.proof_id   = gen_id seed;
522             K.proof_context = [`Joint jo]; 
523             K.proof_apply_context = [];
524             K.proof_conclude = 
525               { K.conclude_id = gen_id seed; 
526                 K.conclude_aref = id;
527                 K.conclude_method = "Exact";
528                 K.conclude_args =
529                 [ K.Premise
530                   { K.premise_id = gen_id seed; 
531                     K.premise_xref = jo.K.joint_id;
532                     K.premise_binder = Some "tiralo fuori";
533                     K.premise_n = Some no;
534                   }
535                 ];
536                 K.conclude_conclusion =
537                    try Some 
538                      (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
539                    with Not_found -> None
540               }
541         } 
542     | C.ACoFix (id,no,funs) -> 
543         let proofs = 
544           List.map 
545             (function (_,name,_,bo) -> `Proof (aux ~name bo)) funs in
546         let jo = 
547           { K.joint_id = gen_id seed;
548             K.joint_kind = `CoRecursive;
549             K.joint_defs = proofs
550           } 
551         in
552           { K.proof_name = name;
553             K.proof_id   = gen_id seed;
554             K.proof_context = [`Joint jo]; 
555             K.proof_apply_context = [];
556             K.proof_conclude = 
557               { K.conclude_id = gen_id seed; 
558                 K.conclude_aref = id;
559                 K.conclude_method = "Exact";
560                 K.conclude_args =
561                 [ K.Premise
562                   { K.premise_id = gen_id seed; 
563                     K.premise_xref = jo.K.joint_id;
564                     K.premise_binder = Some "tiralo fuori";
565                     K.premise_n = Some no;
566                   }
567                 ];
568                 K.conclude_conclusion =
569                   try Some 
570                     (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
571                   with Not_found -> None
572               };
573         } 
574      in 
575      let id = get_id t in
576      generate_conversion seed false id t1 ~ids_to_inner_types
577 in aux ?name t
578
579 and inductive seed name id li ids_to_inner_types ids_to_inner_sorts =
580   let aux ?name = acic2content seed  ~ids_to_inner_types ~ids_to_inner_sorts in
581   let module C2A = Cic2acic in
582   let module K = Content in
583   let module C = Cic in
584   match li with 
585     C.AConst (idc,uri,exp_named_subst)::args ->
586       let uri_str = UriManager.string_of_uri uri in
587       let suffix = Str.regexp_string "_ind.con" in
588       let len = String.length uri_str in 
589       let n = (try (Str.search_backward suffix uri_str len)
590                with Not_found -> -1) in
591       if n<0 then raise NotApplicable
592       else 
593         let prefix = String.sub uri_str 0 n in
594         let ind_str = (prefix ^ ".ind") in 
595         let ind_uri = UriManager.uri_of_string ind_str in
596         let inductive_types,noparams =
597            (match CicEnvironment.get_obj ind_uri with
598                Cic.Constant _ -> assert false
599              | Cic.Variable _ -> assert false
600              | Cic.CurrentProof _ -> assert false
601              | Cic.InductiveDefinition (l,_,n) -> (l,n) 
602            ) in
603         let rec split n l =
604           if n = 0 then ([],l) else
605           let p,a = split (n-1) (List.tl l) in
606           ((List.hd l::p),a) in
607         let params_and_IP,tail_args = split (noparams+1) args in 
608         let constructors = 
609             (match inductive_types with
610               [(_,_,_,l)] -> l
611             | _ -> raise NotApplicable) (* don't care for mutual ind *) in
612         let constructors1 = 
613           let rec clean_up n t =
614              if n = 0 then t else
615              (match t with
616                 (label,Cic.Prod (_,_,t)) -> clean_up (n-1) (label,t)
617               | _ -> assert false) in
618           List.map (clean_up noparams) constructors in
619         let no_constructors= List.length constructors in
620         let args_for_cases, other_args = 
621           split no_constructors tail_args in
622         let args_to_lift = 
623           List.filter (test_for_lifting ~ids_to_inner_types) other_args in
624         let subproofs = 
625           match args_to_lift with
626             [_] -> List.map aux args_to_lift 
627           | _ -> List.map (aux ~name:"H") args_to_lift in
628         prerr_endline "****** end subproofs *******"; flush stderr;
629         let other_method_args = 
630           build_args seed other_args subproofs 
631              ~ids_to_inner_types ~ids_to_inner_sorts in
632 (*
633         let rparams,inductive_arg =
634           let rec aux =
635             function 
636               [] -> assert false            
637             | [ia] -> [],ia
638             | a::tl -> let (p,ia) = aux tl in (a::p,ia) in
639           aux other_method_args in 
640 *)
641         prerr_endline "****** end other *******"; flush stderr;
642         let method_args=
643           let rec build_method_args =
644             function
645                 [],_-> [] (* extra args are ignored ???? *)
646               | (name,ty)::tlc,arg::tla ->
647                   let idarg = get_id arg in
648                   let sortarg = 
649                     (try (Hashtbl.find ids_to_inner_sorts idarg)
650                      with Not_found -> "Type") in
651                   let hdarg = 
652                     if sortarg = "Prop" then
653                       let (co,bo) = 
654                         let rec bc = 
655                           function 
656                             Cic.Prod (_,s,t),Cic.ALambda(idl,n,s1,t1) ->
657                               let ce = 
658                                 build_decl_item 
659                                   seed idl n s1 ~ids_to_inner_sorts in
660                               if (occur ind_uri s) then
661                                 (  prerr_endline ("inductive:" ^ (UriManager.string_of_uri ind_uri) ^ (CicPp.ppterm s)); flush stderr; 
662                                    match t1 with
663                                    Cic.ALambda(id2,n2,s2,t2) ->
664                                      let inductive_hyp =
665                                        `Hypothesis
666                                          { K.dec_name = name_of n2;
667                                            K.dec_id = gen_id seed; 
668                                            K.dec_inductive = true;
669                                            K.dec_aref = id2;
670                                            K.dec_type = s2
671                                          } in
672                                      let (context,body) = bc (t,t2) in
673                                      (ce::inductive_hyp::context,body)
674                                  | _ -> assert false)
675                               else 
676                                 (  prerr_endline ("no inductive:" ^ (UriManager.string_of_uri ind_uri) ^ (CicPp.ppterm s)); flush stderr; 
677                                 let (context,body) = bc (t,t1) in
678                                 (ce::context,body))
679                             | _ , t -> ([],aux t) in
680                         bc (ty,arg) in
681                       K.ArgProof
682                        { bo with
683                          K.proof_name = Some name;
684                          K.proof_context = co; 
685                        };
686                     else (K.Term arg) in
687                   hdarg::(build_method_args (tlc,tla))
688               | _ -> assert false in
689           build_method_args (constructors1,args_for_cases) in
690           { K.proof_name = None;
691             K.proof_id   = gen_id seed;
692             K.proof_context = []; 
693             K.proof_apply_context = subproofs;
694             K.proof_conclude = 
695               { K.conclude_id = gen_id seed; 
696                 K.conclude_aref = id;
697                 K.conclude_method = "ByInduction";
698                 K.conclude_args =
699                   K.Aux no_constructors 
700                   ::K.Term (C.AAppl id ((C.AConst(idc,uri,exp_named_subst))::params_and_IP))
701                   ::method_args@other_method_args;
702                 K.conclude_conclusion = 
703                    try Some 
704                      (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
705                    with Not_found -> None  
706               }
707           } 
708   | _ -> raise NotApplicable
709
710 and rewrite seed name id li ids_to_inner_types ids_to_inner_sorts =
711   let aux ?name = acic2content seed ~ids_to_inner_types ~ids_to_inner_sorts in
712   let module C2A = Cic2acic in
713   let module K = Content in
714   let module C = Cic in
715   match li with 
716     C.AConst (sid,uri,exp_named_subst)::args ->
717       let uri_str = UriManager.string_of_uri uri in
718       if uri_str = "cic:/Coq/Init/Logic/eq_ind.con" or
719          uri_str = "cic:/Coq/Init/Logic/eq_ind_r.con" then 
720         let subproof = aux (List.nth args 3) in
721         let method_args =
722           let rec ma_aux n = function
723               [] -> []
724             | a::tl -> 
725                 let hd = 
726                   if n = 0 then
727                     K.Premise
728                      { K.premise_id = gen_id seed;
729                        K.premise_xref = subproof.K.proof_id;
730                        K.premise_binder = None;
731                        K.premise_n = None
732                      }
733                   else 
734                     let aid = get_id a in
735                     let asort = (try (Hashtbl.find ids_to_inner_sorts aid)
736                       with Not_found -> "Type") in
737                     if asort = "Prop" then
738                       K.ArgProof (aux a)
739                     else K.Term a in
740                 hd::(ma_aux (n-1) tl) in
741           (ma_aux 3 args) in 
742           { K.proof_name = None;
743             K.proof_id   = gen_id seed;
744             K.proof_context = []; 
745             K.proof_apply_context = [subproof];
746             K.proof_conclude = 
747               { K.conclude_id = gen_id seed; 
748                 K.conclude_aref = id;
749                 K.conclude_method = "Rewrite";
750                 K.conclude_args = 
751                   K.Term (C.AConst (sid,uri,exp_named_subst))::method_args;
752                 K.conclude_conclusion = 
753                    try Some 
754                      (Hashtbl.find ids_to_inner_types id).C2A.annsynthesized
755                    with Not_found -> None
756               }
757           } 
758       else raise NotApplicable
759   | _ -> raise NotApplicable
760 ;; 
761
762 let map_conjectures
763  seed ~ids_to_inner_sorts ~ids_to_inner_types (id,n,context,ty)
764 =
765  let module K = Content in
766  let context' =
767   List.map
768    (function
769        (id,None) as item -> item
770      | (id,Some (name,Cic.ADecl t)) ->
771          id,
772           Some
773            (* We should call build_decl_item, but we have not computed *)
774            (* the inner-types ==> we always produce a declaration      *)
775            (`Declaration
776              { K.dec_name = name_of name;
777                K.dec_id = gen_id seed; 
778                K.dec_inductive = false;
779                K.dec_aref = get_id t;
780                K.dec_type = t
781              })
782      | (id,Some (name,Cic.ADef t)) ->
783          id,
784           Some
785            (* We should call build_def_item, but we have not computed *)
786            (* the inner-types ==> we always produce a declaration     *)
787            (`Definition
788               { K.def_name = name_of name;
789                 K.def_id = gen_id seed; 
790                 K.def_aref = get_id t;
791                 K.def_term = t
792               })
793    ) context
794  in
795   (id,n,context',ty)
796 ;;
797
798 let rec annobj2content ~ids_to_inner_sorts ~ids_to_inner_types = 
799   let module C = Cic in
800   let module K = Content in
801   let module C2A = Cic2acic in
802   let seed = ref 0 in
803   function
804       C.ACurrentProof (_,_,n,conjectures,bo,ty,params) ->
805         (gen_id seed, params,
806           Some
807            (List.map
808              (map_conjectures seed ~ids_to_inner_sorts ~ids_to_inner_types)
809              conjectures),
810           `Def (K.Const,ty,
811             build_def_item seed (get_id bo) (C.Name n) bo 
812              ~ids_to_inner_sorts ~ids_to_inner_types))
813     | C.AConstant (_,_,n,Some bo,ty,params) ->
814          (gen_id seed, params, None,
815            `Def (K.Const,ty,
816              build_def_item seed (get_id bo) (C.Name n) bo 
817                ~ids_to_inner_sorts ~ids_to_inner_types))
818     | C.AConstant (id,_,n,None,ty,params) ->
819          (gen_id seed, params, None,
820            `Decl (K.Const,
821              build_decl_item seed id (C.Name n) ty 
822                ~ids_to_inner_sorts))
823     | C.AVariable (_,n,Some bo,ty,params) ->
824          (gen_id seed, params, None,
825            `Def (K.Var,ty,
826              build_def_item seed (get_id bo) (C.Name n) bo
827                ~ids_to_inner_sorts ~ids_to_inner_types))
828     | C.AVariable (id,n,None,ty,params) ->
829          (gen_id seed, params, None,
830            `Decl (K.Var,
831              build_decl_item seed id (C.Name n) ty
832               ~ids_to_inner_sorts))
833     | C.AInductiveDefinition (id,l,params,nparams) ->
834          (gen_id seed, params, None,
835             `Joint
836               { K.joint_id = gen_id seed;
837                 K.joint_kind = `Inductive nparams;
838                 K.joint_defs = List.map (build_inductive seed) l
839               }) 
840
841 and
842     build_inductive seed = 
843      let module K = Content in
844       fun (_,n,b,ty,l) ->
845         `Inductive
846           { K.inductive_id = gen_id seed;
847             K.inductive_kind = b;
848             K.inductive_type = ty;
849             K.inductive_constructors = build_constructors seed l
850            }
851
852 and 
853     build_constructors seed l =
854      let module K = Content in
855       List.map 
856        (fun (n,t) ->
857            { K.dec_name = Some n;
858              K.dec_id = gen_id seed;
859              K.dec_inductive = false;
860              K.dec_aref = "";
861              K.dec_type = t
862            }) l
863 ;;
864    
865 (* 
866 and 'term cinductiveType = 
867  id * string * bool * 'term *                (* typename, inductive, arity *)
868    'term cconstructor list                   (*  constructors        *)
869
870 and 'term cconstructor =
871  string * 'term    
872 *)
873
874