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