]> matita.cs.unibo.it Git - helm.git/blob - components/grafite_engine/grafiteEngine.ml
Never implemented tactics compare and decide equality purged from the code.
[helm.git] / components / grafite_engine / grafiteEngine.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$ *)
27
28 open Printf
29
30 exception Drop
31 exception IncludedFileNotCompiled of string (* file name *)
32 exception Macro of
33  GrafiteAst.loc *
34   (Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro)
35 exception ReadOnlyUri of string
36
37 type options = { 
38   do_heavy_checks: bool ; 
39   clean_baseuri: bool
40 }
41
42 (** create a ProofEngineTypes.mk_fresh_name_type function which uses given
43   * names as long as they are available, then it fallbacks to name generation
44   * using FreshNamesGenerator module *)
45 let namer_of names =
46   let len = List.length names in
47   let count = ref 0 in
48   fun metasenv context name ~typ ->
49     if !count < len then begin
50       let name = Cic.Name (List.nth names !count) in
51       incr count;
52       name
53     end else
54       FreshNamesGenerator.mk_fresh_name ~subst:[] metasenv context name ~typ
55
56 let tactic_of_ast ast =
57   let module PET = ProofEngineTypes in
58   match ast with
59   | GrafiteAst.Absurd (_, term) -> Tactics.absurd term
60   | GrafiteAst.Apply (_, term) -> Tactics.apply term
61   | GrafiteAst.Assumption _ -> Tactics.assumption
62   | GrafiteAst.Auto (_,depth,width,paramodulation,full) ->
63       AutoTactic.auto_tac ?depth ?width ?paramodulation ?full
64         ~dbd:(LibraryDb.instance ()) ()
65   | GrafiteAst.Change (_, pattern, with_what) ->
66      Tactics.change ~pattern with_what
67   | GrafiteAst.Clear (_,id) -> Tactics.clear id
68   | GrafiteAst.ClearBody (_,id) -> Tactics.clearbody id
69   | GrafiteAst.Contradiction _ -> Tactics.contradiction
70   | GrafiteAst.Constructor (_, n) -> Tactics.constructor n
71   | GrafiteAst.Cut (_, ident, term) ->
72      let names = match ident with None -> [] | Some id -> [id] in
73      Tactics.cut ~mk_fresh_name_callback:(namer_of names) term
74   | GrafiteAst.Decompose (_, types, what, names) -> 
75       let to_type = function
76          | GrafiteAst.Type (uri, typeno) -> uri, typeno
77          | GrafiteAst.Ident _            -> assert false
78       in
79       let user_types = List.rev_map to_type types in
80       let dbd = LibraryDb.instance () in
81       let mk_fresh_name_callback = namer_of names in
82       Tactics.decompose ~mk_fresh_name_callback ~dbd ~user_types what
83   | GrafiteAst.Discriminate (_,term) -> Tactics.discriminate term
84   | GrafiteAst.Elim (_, what, using, depth, names) ->
85       Tactics.elim_intros ?using ?depth ~mk_fresh_name_callback:(namer_of names)
86         what
87   | GrafiteAst.ElimType (_, what, using, depth, names) ->
88       Tactics.elim_type ?using ?depth ~mk_fresh_name_callback:(namer_of names)
89         what
90   | GrafiteAst.Exact (_, term) -> Tactics.exact term
91   | GrafiteAst.Exists _ -> Tactics.exists
92   | GrafiteAst.Fail _ -> Tactics.fail
93   | GrafiteAst.Fold (_, reduction_kind, term, pattern) ->
94       let reduction =
95         match reduction_kind with
96         | `Demodulate -> 
97             GrafiteTypes.command_error "demodulation can't be folded"
98         | `Normalize ->
99             PET.const_lazy_reduction
100               (CicReduction.normalize ~delta:false ~subst:[])
101         | `Reduce -> PET.const_lazy_reduction ProofEngineReduction.reduce
102         | `Simpl -> PET.const_lazy_reduction ProofEngineReduction.simpl
103         | `Unfold None ->
104             PET.const_lazy_reduction (ProofEngineReduction.unfold ?what:None)
105         | `Unfold (Some lazy_term) ->
106            (fun context metasenv ugraph ->
107              let what, metasenv, ugraph = lazy_term context metasenv ugraph in
108              ProofEngineReduction.unfold ~what, metasenv, ugraph)
109         | `Whd ->
110             PET.const_lazy_reduction (CicReduction.whd ~delta:false ~subst:[])
111       in
112       Tactics.fold ~reduction ~term ~pattern
113   | GrafiteAst.Fourier _ -> Tactics.fourier
114   | GrafiteAst.FwdSimpl (_, hyp, names) -> 
115      Tactics.fwd_simpl ~mk_fresh_name_callback:(namer_of names)
116       ~dbd:(LibraryDb.instance ()) hyp
117   | GrafiteAst.Generalize (_,pattern,ident) ->
118      let names = match ident with None -> [] | Some id -> [id] in
119      Tactics.generalize ~mk_fresh_name_callback:(namer_of names) pattern 
120   | GrafiteAst.Goal (_, n) -> Tactics.set_goal n
121   | GrafiteAst.IdTac _ -> Tactics.id
122   | GrafiteAst.Injection (_,term) -> Tactics.injection term
123   | GrafiteAst.Intros (_, None, names) ->
124       PrimitiveTactics.intros_tac ~mk_fresh_name_callback:(namer_of names) ()
125   | GrafiteAst.Intros (_, Some num, names) ->
126       PrimitiveTactics.intros_tac ~howmany:num
127         ~mk_fresh_name_callback:(namer_of names) ()
128   | GrafiteAst.Inversion (_, term) ->
129       Tactics.inversion term
130   | GrafiteAst.LApply (_, how_many, to_what, what, ident) ->
131       let names = match ident with None -> [] | Some id -> [id] in
132       Tactics.lapply ~mk_fresh_name_callback:(namer_of names) ?how_many
133         ~to_what what
134   | GrafiteAst.Left _ -> Tactics.left
135   | GrafiteAst.LetIn (loc,term,name) ->
136       Tactics.letin term ~mk_fresh_name_callback:(namer_of [name])
137   | GrafiteAst.Reduce (_, reduction_kind, pattern) ->
138       (match reduction_kind with
139          | `Demodulate -> Tactics.demodulate ~dbd:(LibraryDb.instance ()) ~pattern
140          | `Normalize -> Tactics.normalize ~pattern
141          | `Reduce -> Tactics.reduce ~pattern  
142          | `Simpl -> Tactics.simpl ~pattern 
143          | `Unfold what -> Tactics.unfold ~pattern what
144          | `Whd -> Tactics.whd ~pattern)
145   | GrafiteAst.Reflexivity _ -> Tactics.reflexivity
146   | GrafiteAst.Replace (_, pattern, with_what) ->
147      Tactics.replace ~pattern ~with_what
148   | GrafiteAst.Rewrite (_, direction, t, pattern) ->
149      EqualityTactics.rewrite_tac ~direction ~pattern t
150   | GrafiteAst.Right _ -> Tactics.right
151   | GrafiteAst.Ring _ -> Tactics.ring
152   | GrafiteAst.Split _ -> Tactics.split
153   | GrafiteAst.Symmetry _ -> Tactics.symmetry
154   | GrafiteAst.Transitivity (_, term) -> Tactics.transitivity term
155
156 (* maybe we only need special cases for apply and goal *)
157 let classify_tactic tactic = 
158   match tactic with
159   (* tactics that can't close the goal (return a goal we want to "select") *)
160   | GrafiteAst.Rewrite _ 
161   | GrafiteAst.Split _ 
162   | GrafiteAst.Replace _ 
163   | GrafiteAst.Reduce _
164   | GrafiteAst.Injection _ 
165   | GrafiteAst.IdTac _ 
166   | GrafiteAst.Generalize _ 
167   | GrafiteAst.Elim _ 
168   | GrafiteAst.Cut _
169   | GrafiteAst.Decompose _ -> true, true
170   (* tactics we don't want to reorder goals. I think only Goal needs this. *)
171   | GrafiteAst.Goal _ -> false, true
172   (* tactics like apply *)
173   | _ -> true, false
174   
175 let reorder_metasenv start refine tactic goals current_goal always_opens_a_goal=
176   let module PEH = ProofEngineHelpers in
177 (*   let print_m name metasenv =
178     prerr_endline (">>>>> " ^ name);
179     prerr_endline (CicMetaSubst.ppmetasenv [] metasenv)
180   in *)
181   (* phase one calculates:
182    *   new_goals_from_refine:  goals added by refine
183    *   head_goal:              the first goal opened by ythe tactic 
184    *   other_goals:            other goals opened by the tactic
185    *)
186   let new_goals_from_refine = PEH.compare_metasenvs start refine in
187   let new_goals_from_tactic = PEH.compare_metasenvs refine tactic in
188   let head_goal, other_goals, goals = 
189     match goals with
190     | [] -> None,[],goals
191     | hd::tl -> 
192         (* assert (List.mem hd new_goals_from_tactic);
193          * invalidato dalla goal_tac
194          * *)
195         Some hd, List.filter ((<>) hd) new_goals_from_tactic, List.filter ((<>)
196         hd) goals
197   in
198   let produced_goals = 
199     match head_goal with
200     | None -> new_goals_from_refine @ other_goals
201     | Some x -> x :: new_goals_from_refine @ other_goals
202   in
203   (* extract the metas generated by refine and tactic *)
204   let metas_for_tactic_head = 
205     match head_goal with
206     | None -> []
207     | Some head_goal -> List.filter (fun (n,_,_) -> n = head_goal) tactic in
208   let metas_for_tactic_goals = 
209     List.map 
210       (fun x -> List.find (fun (metano,_,_) -> metano = x) tactic)
211     goals 
212   in
213   let metas_for_refine_goals = 
214     List.filter (fun (n,_,_) -> List.mem n new_goals_from_refine) tactic in
215   let produced_metas, goals = 
216     let produced_metas =
217       if always_opens_a_goal then
218         metas_for_tactic_head @ metas_for_refine_goals @ 
219           metas_for_tactic_goals
220       else begin
221 (*         print_m "metas_for_refine_goals" metas_for_refine_goals;
222         print_m "metas_for_tactic_head" metas_for_tactic_head;
223         print_m "metas_for_tactic_goals" metas_for_tactic_goals; *)
224         metas_for_refine_goals @ metas_for_tactic_head @ 
225           metas_for_tactic_goals
226       end
227     in
228     let goals = List.map (fun (metano, _, _) -> metano)  produced_metas in
229     produced_metas, goals
230   in
231   (* residual metas, preserving the original order *)
232   let before, after = 
233     let rec split e =
234       function 
235       | [] -> [],[]
236       | (metano, _, _) :: tl when metano = e -> 
237           [], List.map (fun (x,_,_) -> x) tl
238       | (metano, _, _) :: tl -> let b, a = split e tl in metano :: b, a
239     in
240     let find n metasenv =
241       try
242         Some (List.find (fun (metano, _, _) -> metano = n) metasenv)
243       with Not_found -> None
244     in
245     let extract l =
246       List.fold_right 
247         (fun n acc -> 
248           match find n tactic with
249           | Some x -> x::acc
250           | None -> acc
251         ) l [] in
252     let before_l, after_l = split current_goal start in
253     let before_l = 
254       List.filter (fun x -> not (List.mem x produced_goals)) before_l in
255     let after_l = 
256       List.filter (fun x -> not (List.mem x produced_goals)) after_l in
257     let before = extract before_l in
258     let after = extract after_l in
259       before, after
260   in
261 (* |+   DEBUG CODE  +|
262   print_m "BEGIN" start;
263   prerr_endline ("goal was: " ^ string_of_int current_goal);
264   prerr_endline ("and metas from refine are:");
265   List.iter 
266     (fun t -> prerr_string (" " ^ string_of_int t)) 
267   new_goals_from_refine;
268   prerr_endline "";
269   print_m "before" before;
270   print_m "metas_for_tactic_head" metas_for_tactic_head;
271   print_m "metas_for_refine_goals" metas_for_refine_goals;
272   print_m "metas_for_tactic_goals" metas_for_tactic_goals;
273   print_m "produced_metas" produced_metas;
274   print_m "after" after; 
275 |+   FINE DEBUG CODE +| *)
276   before @ produced_metas @ after, goals 
277   
278 let apply_tactic ~disambiguate_tactic tactic (status, goal) =
279 (* prerr_endline "apply_tactic"; *)
280 (* prerr_endline (Continuationals.Stack.pp (GrafiteTypes.get_stack status)); *)
281  let starting_metasenv = GrafiteTypes.get_proof_metasenv status in
282  let before = List.map (fun g, _, _ -> g) starting_metasenv in
283 (* prerr_endline "disambiguate"; *)
284  let status, tactic = disambiguate_tactic status goal tactic in
285  let metasenv_after_refinement =  GrafiteTypes.get_proof_metasenv status in
286  let proof = GrafiteTypes.get_current_proof status in
287  let proof_status = proof, goal in
288  let needs_reordering, always_opens_a_goal = classify_tactic tactic in
289  let tactic = tactic_of_ast tactic in
290  (* apply tactic will change the lexicon_status ... *)
291 (* prerr_endline "apply_tactic bassa"; *)
292  let (proof, opened) = ProofEngineTypes.apply_tactic tactic proof_status in
293  let after = ProofEngineTypes.goals_of_proof proof in
294  let opened_goals, closed_goals = Tacticals.goals_diff ~before ~after ~opened in
295 (* prerr_endline("before: " ^ String.concat ", " (List.map string_of_int before));
296 prerr_endline("after: " ^ String.concat ", " (List.map string_of_int after));
297 prerr_endline("opened: " ^ String.concat ", " (List.map string_of_int opened)); *)
298 (* prerr_endline("opened_goals: " ^ String.concat ", " (List.map string_of_int opened_goals));
299 prerr_endline("closed_goals: " ^ String.concat ", " (List.map string_of_int closed_goals)); *)
300  let proof, opened_goals = 
301    if needs_reordering then begin
302      let uri, metasenv_after_tactic, t, ty = proof in
303 (* prerr_endline ("goal prima del riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof))); *)
304      let reordered_metasenv, opened_goals = 
305        reorder_metasenv
306         starting_metasenv
307         metasenv_after_refinement metasenv_after_tactic
308         opened goal always_opens_a_goal
309      in
310      let proof' = uri, reordered_metasenv, t, ty in
311 (* prerr_endline ("goal dopo il riordino: " ^ String.concat " " (List.map string_of_int (ProofEngineTypes.goals_of_proof proof'))); *)
312      proof', opened_goals
313    end
314       else
315         proof, opened_goals
316  in
317  let incomplete_proof =
318    match status.GrafiteTypes.proof_status with
319    | GrafiteTypes.Incomplete_proof p -> p
320    | _ -> assert false
321  in
322  { status with GrafiteTypes.proof_status =
323     GrafiteTypes.Incomplete_proof
324      { incomplete_proof with GrafiteTypes.proof = proof } },
325  opened_goals, closed_goals
326
327 type eval_ast =
328  {ea_go:
329   'term 'lazy_term 'reduction 'obj 'ident.
330   disambiguate_tactic:
331    (GrafiteTypes.status ->
332     ProofEngineTypes.goal ->
333     ('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic ->
334     GrafiteTypes.status *
335    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
336
337   disambiguate_command:
338    (GrafiteTypes.status ->
339     'obj GrafiteAst.command ->
340     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
341
342   disambiguate_macro:
343    (GrafiteTypes.status ->
344     'term GrafiteAst.macro ->
345     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
346
347   ?do_heavy_checks:bool ->
348   ?clean_baseuri:bool ->
349   GrafiteTypes.status ->
350   ('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.statement ->
351   GrafiteTypes.status * UriManager.uri list
352  }
353
354 type 'a eval_command =
355  {ec_go: 'term 'obj.
356   disambiguate_command:
357    (GrafiteTypes.status ->
358     'obj GrafiteAst.command ->
359     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
360   options -> GrafiteTypes.status -> 'obj GrafiteAst.command ->
361    GrafiteTypes.status * UriManager.uri list
362  }
363
364 type 'a eval_executable =
365  {ee_go: 'term 'lazy_term 'reduction 'obj 'ident.
366   disambiguate_tactic:
367    (GrafiteTypes.status ->
368     ProofEngineTypes.goal ->
369     ('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic ->
370     GrafiteTypes.status *
371    (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
372
373   disambiguate_command:
374    (GrafiteTypes.status ->
375     'obj GrafiteAst.command ->
376     GrafiteTypes.status * Cic.obj GrafiteAst.command) ->
377
378   disambiguate_macro:
379    (GrafiteTypes.status ->
380     'term GrafiteAst.macro ->
381     Cic.context -> GrafiteTypes.status * Cic.term GrafiteAst.macro) ->
382
383   options ->
384   GrafiteTypes.status ->
385   ('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.code ->
386   GrafiteTypes.status * UriManager.uri list
387  }
388
389 type 'a eval_from_moo =
390  { efm_go: GrafiteTypes.status -> string -> GrafiteTypes.status }
391       
392 let coercion_moo_statement_of uri =
393   GrafiteAst.Coercion (HExtlib.dummy_floc, uri, false)
394
395 let eval_coercion status ~add_composites uri =
396  let basedir = Helm_registry.get "matita.basedir" in
397  let status,compounds =
398    prerr_endline "evaluating a coercion command";
399   GrafiteSync.add_coercion ~basedir ~add_composites status uri in
400  let moo_content = coercion_moo_statement_of uri in
401  let status = GrafiteTypes.add_moo_content [moo_content] status in
402   {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
403    compounds
404
405 let eval_tactical ~disambiguate_tactic status tac =
406  let apply_tactic = apply_tactic ~disambiguate_tactic in
407  let module MatitaStatus =
408   struct
409    type input_status = GrafiteTypes.status * ProofEngineTypes.goal
410  
411    type output_status =
412      GrafiteTypes.status * ProofEngineTypes.goal list * ProofEngineTypes.goal list
413  
414    type tactic = input_status -> output_status
415  
416    let id_tactic = apply_tactic (GrafiteAst.IdTac HExtlib.dummy_floc)
417    let mk_tactic tac = tac
418    let apply_tactic tac = tac
419    let goals (_, opened, closed) = opened, closed
420    let set_goals (opened, closed) (status, _, _) = (status, opened, closed)
421    let get_stack (status, _) = GrafiteTypes.get_stack status
422  
423    let set_stack stack (status, opened, closed) = 
424      GrafiteTypes.set_stack stack status, opened, closed
425  
426    let inject (status, _) = (status, [], [])
427    let focus goal (status, _, _) = (status, goal)
428   end
429  in
430  let module MatitaTacticals = Tacticals.Make (MatitaStatus) in
431   let rec tactical_of_ast l tac =
432     match tac with
433     | GrafiteAst.Tactic (loc, tactic) ->
434         MatitaTacticals.tactic (MatitaStatus.mk_tactic (apply_tactic tactic))
435     | GrafiteAst.Seq (loc, tacticals) ->  (* tac1; tac2; ... *)
436        assert (l > 0);
437        MatitaTacticals.seq ~tactics:(List.map (tactical_of_ast (l+1)) tacticals)
438     | GrafiteAst.Do (loc, n, tactical) ->
439         MatitaTacticals.do_tactic ~n ~tactic:(tactical_of_ast (l+1) tactical)
440     | GrafiteAst.Repeat (loc, tactical) ->
441         MatitaTacticals.repeat_tactic ~tactic:(tactical_of_ast (l+1) tactical)
442     | GrafiteAst.Then (loc, tactical, tacticals) ->  (* tac; [ tac1 | ... ] *)
443         assert (l > 0);
444         MatitaTacticals.thens ~start:(tactical_of_ast (l+1) tactical)
445           ~continuations:(List.map (tactical_of_ast (l+1)) tacticals)
446     | GrafiteAst.First (loc, tacticals) ->
447         MatitaTacticals.first
448           ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
449     | GrafiteAst.Try (loc, tactical) ->
450         MatitaTacticals.try_tactic ~tactic:(tactical_of_ast (l+1) tactical)
451     | GrafiteAst.Solve (loc, tacticals) ->
452         MatitaTacticals.solve_tactics
453          ~tactics:(List.map (fun t -> "", tactical_of_ast (l+1) t) tacticals)
454
455     | GrafiteAst.Skip loc -> MatitaTacticals.skip
456     | GrafiteAst.Dot loc -> MatitaTacticals.dot
457     | GrafiteAst.Semicolon loc -> MatitaTacticals.semicolon
458     | GrafiteAst.Branch loc -> MatitaTacticals.branch
459     | GrafiteAst.Shift loc -> MatitaTacticals.shift
460     | GrafiteAst.Pos (loc, i) -> MatitaTacticals.pos i
461     | GrafiteAst.Merge loc -> MatitaTacticals.merge
462     | GrafiteAst.Focus (loc, goals) -> MatitaTacticals.focus goals
463     | GrafiteAst.Unfocus loc -> MatitaTacticals.unfocus
464   in
465   let status, _, _ = tactical_of_ast 0 tac (status, ~-1) in
466   let status =  (* is proof completed? *)
467     match status.GrafiteTypes.proof_status with
468     | GrafiteTypes.Incomplete_proof
469        { GrafiteTypes.stack = stack; proof = proof }
470       when Continuationals.Stack.is_empty stack ->
471         { status with GrafiteTypes.proof_status = GrafiteTypes.Proof proof }
472     | _ -> status
473   in
474   status
475
476 let eval_comment status c = status
477
478 (* since the record syntax allows to declare coercions, we have to put this
479  * information inside the moo *)
480 let add_coercions_of_record_to_moo obj lemmas status =
481   let attributes = CicUtil.attributes_of_obj obj in
482   let is_record = function `Class (`Record att) -> Some att | _-> None in
483   match HExtlib.list_findopt is_record attributes with
484   | None -> status,[]
485   | Some fields -> 
486       let is_a_coercion uri =
487         try
488           let obj,_ = 
489             CicEnvironment.get_cooked_obj  CicUniv.empty_ugraph uri in
490           let attrs = CicUtil.attributes_of_obj obj in
491           List.mem (`Class `Projection) attrs
492         with Not_found -> assert false
493       in
494       (* looking at the fields we can know the 'wanted' coercions, but not the 
495        * actually generated ones. So, only the intersection between the wanted
496        * and the actual should be in the moo as coercion, while everithing in
497        * lemmas should go as aliases *)
498       let wanted_coercions = 
499         HExtlib.filter_map 
500           (function 
501             | (name,true) -> 
502                Some 
503                  (UriManager.uri_of_string 
504                    (GrafiteTypes.qualify status name ^ ".con"))
505             | _ -> None) 
506           fields
507       in
508       prerr_endline "wanted coercions:";
509       List.iter 
510         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
511         wanted_coercions;
512       let coercions, moo_content = 
513         List.split
514           (HExtlib.filter_map 
515             (fun uri ->
516               let is_a_wanted_coercion = 
517                 List.exists (UriManager.eq uri) wanted_coercions in
518               if is_a_coercion uri && is_a_wanted_coercion then
519                 Some (uri, coercion_moo_statement_of uri)
520               else
521                 None) 
522             lemmas)
523       in
524       prerr_endline "actual coercions:";
525       List.iter 
526         (fun u -> prerr_endline (UriManager.string_of_uri u)) 
527         coercions;
528       let status = GrafiteTypes.add_moo_content moo_content status in 
529       {status with 
530         GrafiteTypes.coercions = coercions @ status.GrafiteTypes.coercions}, 
531       lemmas
532
533 let add_obj uri obj status =
534  let basedir = Helm_registry.get "matita.basedir" in
535  let status,lemmas = GrafiteSync.add_obj ~basedir uri obj status in
536  status, lemmas 
537       
538 let rec eval_command = {ec_go = fun ~disambiguate_command opts status cmd ->
539  let status,cmd = disambiguate_command status cmd in
540  let basedir = Helm_registry.get "matita.basedir" in
541  let status,uris =
542   match cmd with
543   | GrafiteAst.Default (loc, what, uris) as cmd ->
544      LibraryObjects.set_default what uris;
545      GrafiteTypes.add_moo_content [cmd] status,[]
546   | GrafiteAst.Include (loc, baseuri) ->
547      let moopath = LibraryMisc.obj_file_of_baseuri ~basedir ~baseuri in
548      if not (Sys.file_exists moopath) then
549        raise (IncludedFileNotCompiled moopath);
550      let status = eval_from_moo.efm_go status moopath in
551      status,[]
552   | GrafiteAst.Set (loc, name, value) -> 
553       if name = "baseuri" then begin
554         let value = 
555           let v = Http_getter_misc.strip_trailing_slash value in
556           try
557             ignore (String.index v ' ');
558             GrafiteTypes.command_error "baseuri can't contain spaces"
559           with Not_found -> v
560         in
561         if Http_getter_storage.is_read_only value then begin
562           HLog.error (sprintf "uri %s belongs to a read-only repository" value);
563           raise (ReadOnlyUri value)
564         end;
565         if not (GrafiteMisc.is_empty value) && opts.clean_baseuri then begin
566           HLog.message ("baseuri " ^ value ^ " is not empty");
567           HLog.message ("cleaning baseuri " ^ value);
568           LibraryClean.clean_baseuris ~basedir [value];
569         end;
570       end;
571       GrafiteTypes.set_option status name value,[]
572   | GrafiteAst.Drop loc -> raise Drop
573   | GrafiteAst.Qed loc ->
574       let uri, metasenv, bo, ty =
575         match status.GrafiteTypes.proof_status with
576         | GrafiteTypes.Proof (Some uri, metasenv, body, ty) ->
577             uri, metasenv, body, ty
578         | GrafiteTypes.Proof (None, metasenv, body, ty) -> 
579             raise (GrafiteTypes.Command_error 
580               ("Someone allows to start a theorem without giving the "^
581                "name/uri. This should be fixed!"))
582         | _->
583           raise
584            (GrafiteTypes.Command_error "You can't Qed an incomplete theorem")
585       in
586       if metasenv <> [] then 
587         raise
588          (GrafiteTypes.Command_error
589            "Proof not completed! metasenv is not empty!");
590       let name = UriManager.name_of_uri uri in
591       let obj = Cic.Constant (name,Some bo,ty,[],[]) in
592       let status, lemmas = add_obj uri obj status in
593        {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
594         uri::lemmas
595   | GrafiteAst.Coercion (loc, uri, add_composites) ->
596      eval_coercion status ~add_composites uri
597   | GrafiteAst.Obj (loc,obj) ->
598      let ext,name =
599       match obj with
600          Cic.Constant (name,_,_,_,_)
601        | Cic.CurrentProof (name,_,_,_,_,_) -> ".con",name
602        | Cic.InductiveDefinition (types,_,_,_) ->
603           ".ind",
604           (match types with (name,_,_,_)::_ -> name | _ -> assert false)
605        | _ -> assert false in
606      let uri = 
607        UriManager.uri_of_string (GrafiteTypes.qualify status name ^ ext) 
608      in
609      let metasenv = GrafiteTypes.get_proof_metasenv status in
610      match obj with
611      | Cic.CurrentProof (_,metasenv',bo,ty,_,_) ->
612          let name = UriManager.name_of_uri uri in
613          if not(CicPp.check name ty) then
614            HLog.error ("Bad name: " ^ name);
615          if opts.do_heavy_checks then
616            begin
617              let dbd = LibraryDb.instance () in
618              let similar = Whelp.match_term ~dbd ty in
619              let similar_len = List.length similar in
620              if similar_len> 30 then
621                (HLog.message
622                  ("Duplicate check will compare your theorem with " ^ 
623                    string_of_int similar_len ^ 
624                    " theorems, this may take a while."));
625              let convertible =
626                List.filter (
627                  fun u ->
628                    let t = CicUtil.term_of_uri u in
629                    let ty',g = 
630                      CicTypeChecker.type_of_aux' 
631                        metasenv' [] t CicUniv.empty_ugraph
632                    in
633                    fst(CicReduction.are_convertible [] ty' ty g)) 
634                similar 
635              in
636              (match convertible with
637              | [] -> ()
638              | x::_ -> 
639                  HLog.warn  
640                  ("Theorem already proved: " ^ UriManager.string_of_uri x ^ 
641                   "\nPlease use a variant."));
642            end;
643          assert (metasenv = metasenv');
644          let initial_proof = (Some uri, metasenv, bo, ty) in
645          let initial_stack = Continuationals.Stack.of_metasenv metasenv in
646          { status with GrafiteTypes.proof_status =
647             GrafiteTypes.Incomplete_proof
648              { GrafiteTypes.proof = initial_proof; stack = initial_stack } },
649           []
650      | _ ->
651          if metasenv <> [] then
652           raise (GrafiteTypes.Command_error (
653             "metasenv not empty while giving a definition with body: " ^
654             CicMetaSubst.ppmetasenv [] metasenv));
655          let status, lemmas = add_obj uri obj status in 
656          let status,new_lemmas =
657           add_coercions_of_record_to_moo obj lemmas status
658          in
659           {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
660            uri::new_lemmas@lemmas
661  in
662   match status.GrafiteTypes.proof_status with
663      GrafiteTypes.Intermediate _ ->
664       {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},uris
665    | _ -> status,uris
666
667 } and eval_executable = {ee_go = fun ~disambiguate_tactic ~disambiguate_command ~disambiguate_macro opts status ex ->
668   match ex with
669   | GrafiteAst.Tactical (_, tac, None) ->
670      eval_tactical ~disambiguate_tactic status tac,[]
671   | GrafiteAst.Tactical (_, tac, Some punct) ->
672      let status = eval_tactical ~disambiguate_tactic status tac in
673       eval_tactical ~disambiguate_tactic status punct,[]
674   | GrafiteAst.Command (_, cmd) ->
675       eval_command.ec_go ~disambiguate_command opts status cmd
676   | GrafiteAst.Macro (loc, macro) ->
677      raise (Macro (loc,disambiguate_macro status macro))
678
679 } and eval_from_moo = {efm_go = fun status fname ->
680   let ast_of_cmd cmd =
681     GrafiteAst.Executable (HExtlib.dummy_floc,
682       GrafiteAst.Command (HExtlib.dummy_floc,
683         cmd))
684   in
685   let moo = GrafiteMarshal.load_moo fname in
686   List.fold_left 
687     (fun status ast -> 
688       let ast = ast_of_cmd ast in
689       let status,lemmas =
690        eval_ast.ea_go
691          ~disambiguate_tactic:(fun status _ tactic -> status,tactic)
692          ~disambiguate_command:(fun status cmd -> status,cmd)
693          ~disambiguate_macro:(fun _ _ -> assert false)
694          status ast
695       in
696        assert (lemmas=[]);
697        status)
698     status moo
699 } and eval_ast = {ea_go = fun ~disambiguate_tactic ~disambiguate_command ~disambiguate_macro ?(do_heavy_checks=false) ?(clean_baseuri=true) status st 
700 ->
701   let opts = {
702     do_heavy_checks = do_heavy_checks ; 
703     clean_baseuri = clean_baseuri }
704   in
705   match st with
706   | GrafiteAst.Executable (_,ex) ->
707      eval_executable.ee_go ~disambiguate_tactic ~disambiguate_command
708       ~disambiguate_macro opts status ex
709   | GrafiteAst.Comment (_,c) -> eval_comment status c,[]
710 }
711
712 let eval_ast = eval_ast.ea_go