]> matita.cs.unibo.it Git - helm.git/blob - matita/components/grafite_engine/grafiteEngine.ml
QED takes a boolean parameter governing indexing.
[helm.git] / matita / 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 (* mo file name, ma file name *)
29 exception NMacro of GrafiteAst.loc * GrafiteAst.nmacro
30
31 type 'a disambiguator_input = string * int * 'a
32
33 type options = { 
34   do_heavy_checks: bool ; 
35 }
36
37 let basic_eval_unification_hint (t,n) status =
38  NCicUnifHint.add_user_provided_hint status t n
39 ;;
40
41 let inject_unification_hint =
42  let basic_eval_unification_hint (t,n) 
43    ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference
44    ~alias_only status
45  =
46   if not alias_only then
47    let t = refresh_uri_in_term (status :> NCic.status) t in
48     basic_eval_unification_hint (t,n) status
49   else
50    status
51  in
52   GrafiteTypes.Serializer.register#run "unification_hints"
53    basic_eval_unification_hint
54 ;;
55
56 let eval_unification_hint status t n = 
57  let metasenv,subst,status,t =
58   GrafiteDisambiguate.disambiguate_nterm status None [] [] [] ("",0,t) in
59  assert (metasenv=[]);
60  let t = NCicUntrusted.apply_subst status subst [] t in
61  let status = basic_eval_unification_hint (t,n) status in
62   NCicLibrary.dump_obj status (inject_unification_hint (t,n))
63 ;;
64
65 let basic_index_obj l status =
66   status#set_auto_cache 
67     (List.fold_left
68       (fun t (ks,v) -> 
69          List.fold_left (fun t k ->
70            NDiscriminationTree.DiscriminationTree.index t k v)
71           t ks) 
72     status#auto_cache l) 
73 ;;     
74
75 let basic_eval_interpretation ~alias_only (dsc, (symbol, args), cic_appl_pattern) status =
76  let status =
77   if not alias_only then
78    Interpretations.add_interpretation status dsc (symbol, args) cic_appl_pattern
79   else
80    status
81  in
82  let mode = GrafiteAst.WithPreferences (*assert false*) in (* MATITA 1.0 VEDI SOTTO *)
83  let diff =
84   [DisambiguateTypes.Symbol (symbol, 0), GrafiteAst.Symbol_alias (symbol,0,dsc)]
85  in
86   GrafiteDisambiguate.set_proof_aliases status ~implicit_aliases:false mode diff
87 ;;
88
89 let inject_interpretation =
90  let basic_eval_interpretation (dsc, (symbol, args), cic_appl_pattern)
91    ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference
92    ~alias_only
93  =
94   let rec refresh =
95    function
96       NotationPt.NRefPattern (NReference.Ref (uri,spec)) ->
97        NotationPt.NRefPattern
98         (NReference.reference_of_spec (NCicLibrary.refresh_uri uri) spec)
99     | NotationPt.VarPattern _
100     | NotationPt.ImplicitPattern as x -> x
101     | NotationPt.ApplPattern l -> NotationPt.ApplPattern (List.map refresh l)
102   in
103   let cic_appl_pattern = refresh cic_appl_pattern in
104    basic_eval_interpretation ~alias_only (dsc, (symbol, args), cic_appl_pattern)
105  in
106   GrafiteTypes.Serializer.register#run "interpretation"
107    basic_eval_interpretation
108 ;;
109
110 let eval_interpretation status data= 
111  let status = basic_eval_interpretation ~alias_only:false data status in
112   NCicLibrary.dump_obj status (inject_interpretation data)
113 ;;
114
115 let basic_eval_alias (mode,diff) status =
116   GrafiteDisambiguate.set_proof_aliases status ~implicit_aliases:false mode diff
117 ;;
118
119 let inject_alias =
120  let basic_eval_alias (mode,diff) ~refresh_uri_in_universe ~refresh_uri_in_term
121    ~refresh_uri_in_reference ~alias_only =
122    basic_eval_alias (mode,diff)
123  in
124   GrafiteTypes.Serializer.register#run "alias" basic_eval_alias
125 ;;
126
127 let eval_alias status data= 
128  let status = basic_eval_alias data status in
129   NCicLibrary.dump_obj status (inject_alias data)
130 ;;
131
132 let basic_eval_input_notation (l1,l2) status =
133   GrafiteParser.extend status l1 
134    (fun env loc ->
135      NotationPt.AttributedTerm
136       (`Loc loc,TermContentPres.instantiate_level2 status env l2)) 
137 ;;
138
139 let inject_input_notation =
140  let basic_eval_input_notation (l1,l2)
141   ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference
142   ~alias_only status
143  =
144    if not alias_only then
145     let l1 =
146      CicNotationParser.refresh_uri_in_checked_l1_pattern
147       ~refresh_uri_in_term:(refresh_uri_in_term (status:>NCic.status))
148       ~refresh_uri_in_reference l1 in
149     let l2 = NotationUtil.refresh_uri_in_term
150       ~refresh_uri_in_term:(refresh_uri_in_term (status:>NCic.status))
151       ~refresh_uri_in_reference l2
152     in
153      basic_eval_input_notation (l1,l2) status
154    else
155     status
156  in
157   GrafiteTypes.Serializer.register#run "input_notation"
158    basic_eval_input_notation
159 ;;
160
161 let eval_input_notation status data= 
162  let status = basic_eval_input_notation data status in
163   NCicLibrary.dump_obj status (inject_input_notation data)
164 ;;
165
166 let basic_eval_output_notation (l1,l2) status =
167  TermContentPres.add_pretty_printer status l2 l1
168 ;;
169
170 let inject_output_notation =
171  let basic_eval_output_notation (l1,l2)
172   ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference
173   ~alias_only status
174  =
175   if not alias_only then
176    let l1 =
177     CicNotationParser.refresh_uri_in_checked_l1_pattern
178      ~refresh_uri_in_term:(refresh_uri_in_term (status:>NCic.status))
179       ~refresh_uri_in_reference l1 in
180    let l2 = NotationUtil.refresh_uri_in_term
181      ~refresh_uri_in_term:(refresh_uri_in_term (status:>NCic.status))
182       ~refresh_uri_in_reference l2
183    in
184     basic_eval_output_notation (l1,l2) status
185   else
186    status
187  in
188   GrafiteTypes.Serializer.register#run "output_notation"
189    basic_eval_output_notation
190 ;;
191
192 let eval_output_notation status data= 
193  let status = basic_eval_output_notation data status in
194   NCicLibrary.dump_obj status (inject_output_notation data)
195 ;;
196
197 let record_index_obj = 
198  let aux l ~refresh_uri_in_universe 
199    ~refresh_uri_in_term ~refresh_uri_in_reference ~alias_only status
200  =
201   let refresh_uri_in_term = refresh_uri_in_term (status:>NCic.status) in
202   if not alias_only then
203     basic_index_obj
204       (List.map 
205         (fun ks,v -> List.map refresh_uri_in_term ks, refresh_uri_in_term v) 
206       l) status
207   else
208    status
209  in
210   GrafiteTypes.Serializer.register#run "index_obj" aux
211 ;;
212
213 let compute_keys status uri height kind = 
214  let mk_item ty spec =
215    let orig_ty = NTacStatus.mk_cic_term [] ty in
216    let status,keys = NnAuto.keys_of_type status orig_ty in
217    let keys =  
218      List.map 
219        (fun t -> 
220           snd (NTacStatus.term_of_cic_term status t (NTacStatus.ctx_of t)))
221        keys
222    in
223    keys,NCic.Const(NReference.reference_of_spec uri spec)
224  in
225  let data = 
226   match kind with
227   | NCic.Fixpoint (ind,ifl,_) -> 
228      HExtlib.list_mapi 
229        (fun (_,_,rno,ty,_) i -> 
230           if ind then mk_item ty (NReference.Fix (i,rno,height)) 
231           else mk_item ty (NReference.CoFix height)) ifl
232   | NCic.Inductive (b,lno,itl,_) -> 
233      HExtlib.list_mapi 
234        (fun (_,_,ty,_) i -> mk_item ty (NReference.Ind (b,i,lno))) itl 
235      @
236      List.map (fun ((_,_,ty),i,j) -> mk_item ty (NReference.Con (i,j+1,lno)))
237        (List.flatten (HExtlib.list_mapi 
238          (fun (_,_,_,cl) i -> HExtlib.list_mapi (fun x j-> x,i,j) cl)
239          itl))
240   | NCic.Constant (_,_,Some _, ty, _) -> 
241      [ mk_item ty (NReference.Def height) ]
242   | NCic.Constant (_,_,None, ty, _) ->
243      [ mk_item ty NReference.Decl ]
244  in
245   HExtlib.filter_map
246    (fun (keys, t) ->
247      let keys = List.filter
248        (function 
249          | (NCic.Meta _) 
250          | (NCic.Appl (NCic.Meta _::_)) -> false 
251          | _ -> true) 
252        keys
253      in
254      if keys <> [] then 
255       begin
256         HLog.debug ("Indexing:" ^ 
257           status#ppterm ~metasenv:[] ~subst:[] ~context:[] t);
258         HLog.debug ("With keys:" ^ String.concat "\n" (List.map (fun t ->
259           status#ppterm ~metasenv:[] ~subst:[] ~context:[] t) keys));
260         Some (keys,t) 
261       end
262      else 
263       begin
264         HLog.debug ("Not indexing:" ^ 
265           status#ppterm ~metasenv:[] ~subst:[] ~context:[] t);
266         None
267       end)
268     data
269 ;;
270
271 let index_obj_for_auto status (uri, height, _, _, kind) = 
272  (*prerr_endline (string_of_int height);*)
273   let data = compute_keys status uri height kind in
274   let status = basic_index_obj data status in
275    NCicLibrary.dump_obj status (record_index_obj data)
276 ;; 
277
278 let index_eq uri status =
279   let eq_status = status#eq_cache in
280   let eq_status = NCicParamod.index_obj status eq_status uri in
281     status#set_eq_cache eq_status
282 ;;
283
284 let record_index_eq =
285  let basic_index_eq uri
286    ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference 
287    ~alias_only status
288    = if not alias_only then index_eq (NCicLibrary.refresh_uri uri) status else
289      status
290  in
291   GrafiteTypes.Serializer.register#run "index_eq" basic_index_eq
292 ;;
293
294 let index_eq_for_auto status uri =
295  if NnAuto.is_a_fact_obj status uri then
296    let newstatus = index_eq uri status in
297      if newstatus#eq_cache == status#eq_cache then status 
298      else
299        ((*prerr_endline ("recording " ^ (NUri.string_of_uri uri));*)
300         NCicLibrary.dump_obj newstatus (record_index_eq uri))
301  else 
302    ((*prerr_endline "Not a fact";*)
303    status)
304 ;; 
305
306 let inject_constraint =
307  let basic_eval_add_constraint (u1,u2) 
308      ~refresh_uri_in_universe ~refresh_uri_in_term ~refresh_uri_in_reference
309      ~alias_only status
310  =
311   if not alias_only then
312    let u1 = refresh_uri_in_universe u1 in 
313    let u2 = refresh_uri_in_universe u2 in 
314     (* NCicLibrary.add_constraint adds the constraint to the NCicEnvironment
315      * and also to the storage (for undo/redo). During inclusion of compiled
316      * files the storage must not be touched. *)
317     NCicEnvironment.add_lt_constraint u1 u2;
318     status
319   else
320    status
321  in
322   GrafiteTypes.Serializer.register#run "constraints" basic_eval_add_constraint 
323 ;;
324
325 let eval_add_constraint status u1 u2 = 
326  let status = NCicLibrary.add_constraint status u1 u2 in
327   NCicLibrary.dump_obj status (inject_constraint (u1,u2))
328 ;;
329
330 let eval_ng_tac tac =
331  let rec aux f (text, prefix_len, tac) =
332   match tac with
333   | GrafiteAst.NApply (_loc, t) -> NTactics.apply_tac (text,prefix_len,t) 
334   | GrafiteAst.NSmartApply (_loc, t) -> 
335       NnAuto.smart_apply_tac (text,prefix_len,t) 
336   | GrafiteAst.NAssert (_loc, seqs) ->
337      NTactics.assert_tac
338       ((List.map
339         (function (hyps,concl) ->
340           List.map
341            (function
342               (id,`Decl t) -> id,`Decl (text,prefix_len,t)
343              |(id,`Def (b,t))->id,`Def((text,prefix_len,b),(text,prefix_len,t))
344            ) hyps,
345           (text,prefix_len,concl))
346        ) seqs)
347   | GrafiteAst.NAuto (_loc, (None,a)) -> 
348       NnAuto.auto_tac ~params:(None,a) ?trace_ref:None
349   | GrafiteAst.NAuto (_loc, (Some l,a)) ->
350       NnAuto.auto_tac
351         ~params:(Some List.map (fun x -> "",0,x) l,a) ?trace_ref:None
352   | GrafiteAst.NBranch _ -> NTactics.branch_tac ~force:false
353   | GrafiteAst.NCases (_loc, what, where) ->
354       NTactics.cases_tac 
355         ~what:(text,prefix_len,what)
356         ~where:(text,prefix_len,where)
357   | GrafiteAst.NCase1 (_loc,n) -> NTactics.case1_tac n
358   | GrafiteAst.NChange (_loc, pat, ww) -> 
359       NTactics.change_tac 
360        ~where:(text,prefix_len,pat) ~with_what:(text,prefix_len,ww) 
361   | GrafiteAst.NConstructor (_loc,num,args) -> 
362      NTactics.constructor_tac 
363        ?num ~args:(List.map (fun x -> text,prefix_len,x) args)
364   | GrafiteAst.NCut (_loc, t) -> NTactics.cut_tac (text,prefix_len,t) 
365 (*| GrafiteAst.NDiscriminate (_,what) -> NDestructTac.discriminate_tac ~what:(text,prefix_len,what)
366   | GrafiteAst.NSubst (_,what) -> NDestructTac.subst_tac ~what:(text,prefix_len,what)*)
367   | GrafiteAst.NClear (_loc, l) -> NTactics.clear_tac l
368   | GrafiteAst.NDestruct (_,dom,skip) -> NDestructTac.destruct_tac dom skip
369   | GrafiteAst.NDot _ -> NTactics.dot_tac 
370   | GrafiteAst.NElim (_loc, what, where) ->
371       NTactics.elim_tac 
372         ~what:(text,prefix_len,what)
373         ~where:(text,prefix_len,where)
374   | GrafiteAst.NFocus (_,l) -> NTactics.focus_tac l
375   | GrafiteAst.NGeneralize (_loc, where) -> 
376       NTactics.generalize_tac ~where:(text,prefix_len,where)
377   | GrafiteAst.NId _ -> (fun x -> x)
378   | GrafiteAst.NIntro (_loc,n) -> NTactics.intro_tac n
379   | GrafiteAst.NIntros (_loc,ns) -> NTactics.intros_tac ns
380   | GrafiteAst.NInversion (_loc, what, where) ->
381       NTactics.inversion_tac 
382         ~what:(text,prefix_len,what)
383         ~where:(text,prefix_len,where)
384   | GrafiteAst.NLApply (_loc, t) -> NTactics.lapply_tac (text,prefix_len,t) 
385   | GrafiteAst.NLetIn (_loc,where,what,name) ->
386       NTactics.letin_tac ~where:(text,prefix_len,where) 
387         ~what:(text,prefix_len,what) name
388   | GrafiteAst.NMerge _ -> NTactics.merge_tac 
389   | GrafiteAst.NPos (_,l) -> NTactics.pos_tac l
390   | GrafiteAst.NPosbyname (_,s) -> NTactics.case_tac s
391   | GrafiteAst.NReduce (_loc, reduction, where) ->
392       NTactics.reduce_tac ~reduction ~where:(text,prefix_len,where)
393   | GrafiteAst.NRewrite (_loc,dir,what,where) ->
394      NTactics.rewrite_tac ~dir ~what:(text,prefix_len,what)
395       ~where:(text,prefix_len,where)
396   | GrafiteAst.NSemicolon _ -> fun x -> x
397   | GrafiteAst.NShift _ -> NTactics.shift_tac 
398   | GrafiteAst.NSkip _ -> NTactics.skip_tac
399   | GrafiteAst.NUnfocus _ -> NTactics.unfocus_tac
400   | GrafiteAst.NWildcard _ -> NTactics.wildcard_tac 
401   | GrafiteAst.NTry (_,tac) -> NTactics.try_tac
402       (f f (text, prefix_len, tac))
403   | GrafiteAst.NAssumption _ -> NTactics.assumption_tac
404   | GrafiteAst.NBlock (_,l) -> 
405       NTactics.block_tac (List.map (fun x -> aux f (text,prefix_len,x)) l)
406   |GrafiteAst.NRepeat (_,tac) ->
407       NTactics.repeat_tac (f f (text, prefix_len, tac))
408  in
409   aux aux tac (* trick for non uniform recursion call *)
410 ;;
411       
412 let subst_metasenv_and_fix_names status =
413   let u,h,metasenv, subst,o = status#obj in
414   let o = 
415     NCicUntrusted.map_obj_kind ~skip_body:true 
416      (NCicUntrusted.apply_subst status subst []) o
417   in
418    status#set_obj(u,h,NCicUntrusted.apply_subst_metasenv status subst metasenv,subst,o)
419 ;;
420
421 let is_proof_irrelevant status context ty =
422   match
423     NCicReduction.whd status ~subst:[] context
424      (NCicTypeChecker.typeof status ~subst:[] ~metasenv:[] context ty)
425   with
426      NCic.Sort NCic.Prop -> true
427    | NCic.Sort _ -> false
428    | _ -> assert false
429 ;;
430
431 let rec relevance_of status ?(context=[]) ty =
432  match NCicReduction.whd status ~subst:[] context ty with
433     NCic.Prod (n,s,t) ->
434      not (is_proof_irrelevant status context s) ::
435       relevance_of status ~context:((n,NCic.Decl s)::context) t
436   | _ -> []
437 ;;
438
439 let compute_relevance status uri =
440  function
441     NCic.Constant (_,name,bo,ty,attrs) ->
442      let relevance = relevance_of status ty in
443       NCic.Constant (relevance,name,bo,ty,attrs)
444   | NCic.Fixpoint (ind,funs,attrs) ->
445      let funs =
446        List.map
447        (fun (_,name,recno,ty,bo) ->
448          let relevance = relevance_of status ty in
449           relevance,name,recno,ty,bo
450         ) funs
451      in
452       NCic.Fixpoint (ind,funs,attrs)
453   | NCic.Inductive (ind,leftno,tys,attrs) ->
454      let context =
455       List.rev_map (fun (_,name,arity,_) -> name,NCic.Decl arity) tys in
456      let tysno = List.length tys in
457      let tys =
458        List.map
459         (fun (_,name,arity,cons) ->
460          let relevance = relevance_of status arity in
461          let cons =
462           List.map
463            (fun (_,name,ty) ->
464              let dety =
465                NCicTypeChecker.debruijn status uri tysno ~subst:[] [] ty in
466              let relevance = relevance_of status ~context dety in
467               relevance,name,ty
468            ) cons
469          in
470           (relevance,name,arity,cons)
471         ) tys
472      in
473       NCic.Inductive (ind,leftno,tys,attrs)
474 ;;
475
476
477 let rec eval_ncommand ~include_paths opts status (text,prefix_len,cmd) =
478   match cmd with
479   | GrafiteAst.Include (loc, mode, fname) ->
480      let _root, baseuri, fullpath, _rrelpath = 
481        Librarian.baseuri_of_script ~include_paths fname in
482      let baseuri = NUri.uri_of_string baseuri in
483      (* MATITA 1.0: keep WithoutPreferences? *)
484      let alias_only = (mode = GrafiteAst.OnlyPreferences) in
485       GrafiteTypes.Serializer.require
486        ~alias_only ~baseuri ~fname:fullpath status
487   | GrafiteAst.UnificationHint (loc, t, n) -> eval_unification_hint status t n
488   | GrafiteAst.NCoercion (loc, name, compose, t, ty, source, target) ->
489      let status, composites =
490       NCicCoercDeclaration.eval_ncoercion status name compose t ty source
491        target in
492      let mode = GrafiteAst.WithPreferences in (* MATITA 1.0: fixme *)
493      let aliases = GrafiteDisambiguate.aliases_for_objs status composites in
494       eval_alias status (mode,aliases)
495   | GrafiteAst.NQed (loc,index) ->
496      if status#ng_mode <> `ProofMode then
497       raise (GrafiteTypes.Command_error "Not in proof mode")
498      else
499       let uri,height,menv,subst,obj_kind = status#obj in
500        if menv <> [] then
501         raise
502          (GrafiteTypes.Command_error"You can't Qed an incomplete theorem")
503        else
504         let obj_kind =
505          NCicUntrusted.map_obj_kind 
506           (NCicUntrusted.apply_subst status subst []) obj_kind in
507         let height = NCicTypeChecker.height_of_obj_kind status uri [] obj_kind in
508         (* fix the height inside the object *)
509         let rec fix () = function 
510           | NCic.Const (NReference.Ref (u,spec)) when NUri.eq u uri -> 
511              NCic.Const (NReference.reference_of_spec u
512               (match spec with
513               | NReference.Def _ -> NReference.Def height
514               | NReference.Fix (i,j,_) -> NReference.Fix(i,j,height)
515               | NReference.CoFix _ -> NReference.CoFix height
516               | NReference.Ind _ | NReference.Con _
517               | NReference.Decl as s -> s))
518           | t -> NCicUtils.map status (fun _ () -> ()) () fix t
519         in
520         let obj_kind = 
521           match obj_kind with
522           | NCic.Fixpoint _ -> 
523               NCicUntrusted.map_obj_kind (fix ()) obj_kind 
524           | _ -> obj_kind
525         in
526         let obj_kind = compute_relevance status uri obj_kind in
527         let obj = uri,height,[],[],obj_kind in
528         let old_status = status in
529         let status = NCicLibrary.add_obj status obj in
530         let index_obj = index &&
531          match obj_kind with
532             NCic.Constant (_,_,_,_,(_,`Example,_))
533           | NCic.Fixpoint (_,_,(_,`Example,_)) -> false
534           | _ -> true
535         in
536         let status =
537          if index_obj then
538           let status = index_obj_for_auto status obj in
539            (try index_eq_for_auto status uri
540            with _ -> status)
541          else
542           status in
543 (*
544           try 
545             index_eq uri status
546           with _ -> prerr_endline "got an exception"; status
547         in *)
548 (*         prerr_endline (status#ppobj obj); *)
549         HLog.message ("New object: " ^ NUri.string_of_uri uri);
550          (try
551        (*prerr_endline (status#ppobj obj);*)
552            let boxml = NCicElim.mk_elims status obj in
553            let boxml = boxml @ NCicElim.mk_projections status obj in
554            let status = status#set_ng_mode `CommandMode in
555            let xxaliases = GrafiteDisambiguate.aliases_for_objs status [uri] in
556            let mode = GrafiteAst.WithPreferences in (* MATITA 1.0: fixme *)
557            let status = eval_alias status (mode,xxaliases) in
558            let status =
559             List.fold_left
560              (fun status boxml ->
561                try
562                 let nstatus =
563                  eval_ncommand ~include_paths opts status
564                   ("",0,GrafiteAst.NObj (HExtlib.dummy_floc,boxml))
565                 in
566                 if nstatus#ng_mode <> `CommandMode then
567                   begin
568                     (*HLog.warn "error in generating projection/eliminator";*)
569                     assert(status#ng_mode = `CommandMode);
570                     status
571                   end
572                 else
573                   nstatus
574                with
575                | MultiPassDisambiguator.DisambiguationError _
576                | NCicTypeChecker.TypeCheckerFailure _ ->
577                   (*HLog.warn "error in generating projection/eliminator";*)
578                   status
579              ) status boxml in             
580            let _,_,_,_,nobj = obj in 
581            let status = match nobj with
582                NCic.Inductive (is_ind,leftno,[it],_) ->
583                  let _,ind_name,ty,cl = it in
584                  List.fold_left 
585                    (fun status outsort ->
586                       let status = status#set_ng_mode `ProofMode in
587                       try
588                        (let status,invobj =
589                          NInversion.mk_inverter 
590                           (ind_name ^ "_inv_" ^
591                             (snd (NCicElim.ast_of_sort outsort)))
592                           is_ind it leftno outsort status status#baseuri in
593                        let _,_,menv,_,_ = invobj in
594                         (match menv with
595                              [] -> eval_ncommand ~include_paths opts status
596                                     ("",0,GrafiteAst.NQed (Stdpp.dummy_loc,false))
597                            | _ -> status))
598                        (* XXX *)
599                       with _ -> (*HLog.warn "error in generating inversion principle"; *)
600                                 let status = status#set_ng_mode `CommandMode in status)
601                   status
602                   (NCic.Prop::
603                     List.map (fun s -> NCic.Type s) (NCicEnvironment.get_universes ()))
604               | _ -> status
605            in
606            let status = match nobj with
607                NCic.Inductive (is_ind,leftno,itl,_) ->
608                  (* first leibniz *)
609                  let status' = List.fold_left
610                    (fun status it ->
611                       let _,ind_name,ty,cl = it in
612                       let status = status#set_ng_mode `ProofMode in
613                       try
614                        (let status,invobj =
615                          NDestructTac.mk_discriminator ~use_jmeq:false
616                           (ind_name ^ "_discr")
617                           it leftno status status#baseuri in
618                        let _,_,menv,_,_ = invobj in
619                         (match menv with
620                              [] -> eval_ncommand ~include_paths opts status
621                                     ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,false))
622                            | _ -> status))
623                        (* XXX *)
624                       with 
625                       | NDestructTac.ConstructorTooBig k -> 
626                           HLog.warn (Printf.sprintf 
627                            "unable to generate leibniz discrimination principle (constructor %s too big)"
628                            k);
629                            let status = status#set_ng_mode `CommandMode in status
630                       | _ -> (*HLog.warn "error in generating discrimination principle"; *)
631                                 let status = status#set_ng_mode `CommandMode in
632                                 status)
633                   status itl
634                 in
635                 (* then JMeq *)
636                 List.fold_left
637                    (fun status it ->
638                       let _,ind_name,ty,cl = it in
639                       let status = status#set_ng_mode `ProofMode in
640                       try
641                        (let status,invobj =
642                          NDestructTac.mk_discriminator ~use_jmeq:true
643                           (ind_name ^ "_jmdiscr")
644                           it leftno status status#baseuri in
645                        let _,_,menv,_,_ = invobj in
646                         (match menv with
647                              [] -> eval_ncommand ~include_paths opts status
648                                     ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,false))
649                            | _ -> status))
650                        (* XXX *)
651                       with _ -> (*HLog.warn "error in generating discrimination principle"; *)
652                                 let status = status#set_ng_mode `CommandMode in
653                                 status)
654                   status' itl
655               | _ -> status
656            in
657            let coercions =
658             match obj with
659               _,_,_,_,NCic.Inductive
660                (true,leftno,[_,_,_,[_,_,_]],(_,`Record fields))
661                ->
662                 HExtlib.filter_map
663                  (fun (name,is_coercion,arity) ->
664                    if is_coercion then Some(name,leftno,arity) else None) fields
665             | _ -> [] in
666            let status =
667             List.fold_left
668              (fun status (name,cpos,arity) ->
669                try
670                  let metasenv,subst,status,t =
671                   GrafiteDisambiguate.disambiguate_nterm status None [] [] []
672                    ("",0,NotationPt.Ident (name,None)) in
673                  assert (metasenv = [] && subst = []);
674                  let status, nuris = 
675                    NCicCoercDeclaration.
676                      basic_eval_and_record_ncoercion_from_t_cpos_arity 
677                       status (name,true,t,cpos,arity) in
678                  let aliases = GrafiteDisambiguate.aliases_for_objs status nuris in
679                   eval_alias status (mode,aliases)
680                with MultiPassDisambiguator.DisambiguationError _-> 
681                  HLog.warn ("error in generating coercion: "^name);
682                  status) 
683              status coercions
684            in
685             status
686           with
687            exn ->
688             NCicLibrary.time_travel old_status;
689             raise exn)
690   | GrafiteAst.NCopy (log,tgt,src_uri, map) ->
691      if status#ng_mode <> `CommandMode then
692       raise (GrafiteTypes.Command_error "Not in command mode")
693      else
694        let tgt_uri_ext, old_ok = 
695          match NCicEnvironment.get_checked_obj status src_uri with
696          | _,_,[],[], (NCic.Inductive _ as ok) -> ".ind", ok
697          | _,_,[],[], (NCic.Fixpoint _ as ok) -> ".con", ok
698          | _,_,[],[], (NCic.Constant _ as ok) -> ".con", ok
699          | _ -> assert false
700        in
701        let tgt_uri = NUri.uri_of_string (status#baseuri^"/"^tgt^tgt_uri_ext) in
702        let map = (src_uri, tgt_uri) :: map in
703        let ok = 
704          let rec subst () = function
705            | NCic.Meta _ -> assert false
706            | NCic.Const (NReference.Ref (u,spec)) as t ->
707                (try NCic.Const 
708                  (NReference.reference_of_spec (List.assoc u map)spec)
709                with Not_found -> t)
710            | t -> NCicUtils.map status (fun _ _ -> ()) () subst t
711          in
712          NCicUntrusted.map_obj_kind ~skip_body:false (subst ()) old_ok
713        in
714        let ninitial_stack = Continuationals.Stack.of_nmetasenv [] in
715        let status = status#set_obj (tgt_uri,0,[],[],ok) in
716        (*prerr_endline (status#ppobj (tgt_uri,0,[],[],ok));*)
717        let status = status#set_stack ninitial_stack in
718        let status = subst_metasenv_and_fix_names status in
719        let status = status#set_ng_mode `ProofMode in
720        eval_ncommand ~include_paths opts status ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,false))
721   | GrafiteAst.NObj (loc,obj) ->
722      if status#ng_mode <> `CommandMode then
723       raise (GrafiteTypes.Command_error "Not in command mode")
724      else
725       let status,obj =
726        GrafiteDisambiguate.disambiguate_nobj status
727         ~baseuri:status#baseuri (text,prefix_len,obj) in
728       let uri,height,nmenv,nsubst,nobj = obj in
729       let ninitial_stack = Continuationals.Stack.of_nmetasenv nmenv in
730       let status = status#set_obj obj in
731       let status = status#set_stack ninitial_stack in
732       let status = subst_metasenv_and_fix_names status in
733       let status = status#set_ng_mode `ProofMode in
734       (match nmenv with
735           [] ->
736            eval_ncommand ~include_paths opts status ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,true))
737         | _ -> status)
738   | GrafiteAst.NDiscriminator (loc, indty) ->
739       if status#ng_mode <> `CommandMode then
740         raise (GrafiteTypes.Command_error "Not in command mode")
741       else
742         let status = status#set_ng_mode `ProofMode in
743         let metasenv,subst,status,indty =
744           GrafiteDisambiguate.disambiguate_nterm status None [] [] [] (text,prefix_len,indty) in
745         let indtyno, (_,_,tys,_,_),leftno = match indty with
746             NCic.Const ((NReference.Ref (_,NReference.Ind (_,indtyno,leftno))) as r) ->
747               indtyno, NCicEnvironment.get_checked_indtys status r, leftno
748           | _ -> prerr_endline ("engine: indty expected... (fix this error message)"); assert false in
749         let (_,ind_name,_,_ as it) = List.nth tys indtyno in
750         let status,obj =  
751           NDestructTac.mk_discriminator ~use_jmeq:true (ind_name ^ "_jmdiscr")
752            it leftno status status#baseuri in
753         let _,_,menv,_,_ = obj in
754           (match menv with
755                [] -> eval_ncommand ~include_paths opts status ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,false))
756              | _ -> prerr_endline ("Discriminator: non empty metasenv");
757                     status)
758   | GrafiteAst.NInverter (loc, name, indty, selection, sort) ->
759      if status#ng_mode <> `CommandMode then
760       raise (GrafiteTypes.Command_error "Not in command mode")
761      else
762       let metasenv,subst,status,sort = match sort with
763         | None -> [],[],status,NCic.Sort NCic.Prop
764         | Some s ->
765            GrafiteDisambiguate.disambiguate_nterm status None [] [] []
766             (text,prefix_len,s) 
767       in
768       assert (metasenv = []);
769       let sort = NCicReduction.whd status ~subst [] sort in
770       let sort =
771        match sort with 
772           NCic.Sort s -> s
773         | _ ->
774            raise (Invalid_argument (Printf.sprintf
775             "ninverter: found target %s, which is not a sort"
776              (status#ppterm ~metasenv ~subst ~context:[] sort))) in
777       let status = status#set_ng_mode `ProofMode in
778       let metasenv,subst,status,indty =
779        GrafiteDisambiguate.disambiguate_nterm status None [] [] subst
780         (text,prefix_len,indty) in
781       let indtyno,(_,leftno,tys,_,_) =
782        match indty with
783           NCic.Const ((NReference.Ref (_,NReference.Ind (_,indtyno,_))) as r) ->
784            indtyno, NCicEnvironment.get_checked_indtys status r
785         | _ ->
786           prerr_endline ("engine: indty ="  ^ status#ppterm ~metasenv:[]
787            ~subst:[] ~context:[] indty);
788           assert false in
789       let it = List.nth tys indtyno in
790       let status,obj =
791        NInversion.mk_inverter name true it leftno ?selection sort 
792         status status#baseuri in
793       let _,_,menv,_,_ = obj in
794        (match menv with
795           [] ->
796             eval_ncommand ~include_paths opts status
797              ("",0,GrafiteAst.NQed(Stdpp.dummy_loc,false))
798         | _ -> assert false)
799   | GrafiteAst.NUnivConstraint (loc,u1,u2) ->
800       eval_add_constraint status [`Type,u1] [`Type,u2]
801   (* ex lexicon commands *)
802   | GrafiteAst.Interpretation (loc, dsc, (symbol, args), cic_appl_pattern) ->
803      let cic_appl_pattern =
804       GrafiteDisambiguate.disambiguate_cic_appl_pattern status args
805        cic_appl_pattern
806      in
807       eval_interpretation status (dsc,(symbol, args),cic_appl_pattern)
808   | GrafiteAst.Notation (loc, dir, l1, associativity, precedence, l2) ->
809       let l1 = 
810         CicNotationParser.check_l1_pattern
811          l1 (dir = Some `RightToLeft) precedence associativity
812       in
813       let status =
814         if dir <> Some `RightToLeft then eval_input_notation status (l1,l2)
815         else status
816       in
817        if dir <> Some `LeftToRight then eval_output_notation status (l1,l2)
818        else status
819   | GrafiteAst.Alias (loc, spec) -> 
820      let diff =
821       (*CSC: Warning: this code should be factorized with the corresponding
822              code in DisambiguatePp *)
823       match spec with
824       | GrafiteAst.Ident_alias (id,uri) -> 
825          [DisambiguateTypes.Id id,spec]
826       | GrafiteAst.Symbol_alias (symb, instance, desc) ->
827          [DisambiguateTypes.Symbol (symb,instance),spec]
828       | GrafiteAst.Number_alias (instance,desc) ->
829          [DisambiguateTypes.Num instance,spec]
830      in
831       let mode = GrafiteAst.WithPreferences in(*assert false in (* VEDI SOPRA *) MATITA 1.0*)
832        eval_alias status (mode,diff)
833 ;;
834
835 let eval_comment opts status (text,prefix_len,c) = status
836
837 let rec eval_executable ~include_paths opts status (text,prefix_len,ex) =
838   match ex with
839   | GrafiteAst.NTactic (_(*loc*), tacl) ->
840       if status#ng_mode <> `ProofMode then
841        raise (GrafiteTypes.Command_error "Not in proof mode")
842       else
843        let status =
844         List.fold_left 
845           (fun status tac ->
846             let status = eval_ng_tac (text,prefix_len,tac) status in
847             subst_metasenv_and_fix_names status)
848           status tacl
849        in
850         status
851   | GrafiteAst.NCommand (_, cmd) ->
852       eval_ncommand ~include_paths opts status (text,prefix_len,cmd)
853   | GrafiteAst.NMacro (loc, macro) ->
854      raise (NMacro (loc,macro))
855
856 and eval_ast ~include_paths ?(do_heavy_checks=false) status (text,prefix_len,st)
857 =
858   let opts = { do_heavy_checks = do_heavy_checks ; } in
859   match st with
860   | GrafiteAst.Executable (_,ex) ->
861      eval_executable ~include_paths opts status (text,prefix_len,ex)
862   | GrafiteAst.Comment (_,c) -> 
863       eval_comment opts status (text,prefix_len,c) 
864 ;;