1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
28 module PEH = ProofEngineHelpers
31 (* mo file name, ma file name *)
32 exception IncludedFileNotCompiled of string * string
35 (Cic.context -> GrafiteTypes.status * (Cic.term,Cic.lazy_term) GrafiteAst.macro)
37 type 'a disambiguator_input = string * int * 'a
40 do_heavy_checks: bool ;
43 (** create a ProofEngineTypes.mk_fresh_name_type function which uses given
44 * names as long as they are available, then it fallbacks to name generation
45 * using FreshNamesGenerator module *)
47 let len = List.length names in
49 fun metasenv context name ~typ ->
50 if !count < len then begin
51 let name = match List.nth names !count with
52 | Some s -> Cic.Name s
53 | None -> Cic.Anonymous
58 FreshNamesGenerator.mk_fresh_name ~subst:[] metasenv context name ~typ
60 let rec tactic_of_ast status ast =
61 let module PET = ProofEngineTypes in
63 (* Higher order tactics *)
64 | GrafiteAst.Do (loc, n, tactic) ->
65 Tacticals.do_tactic n (tactic_of_ast status tactic)
66 | GrafiteAst.Seq (loc, tactics) -> (* tac1; tac2; ... *)
67 Tacticals.seq (List.map (tactic_of_ast status) tactics)
68 | GrafiteAst.Repeat (loc, tactic) ->
69 Tacticals.repeat_tactic (tactic_of_ast status tactic)
70 | GrafiteAst.Then (loc, tactic, tactics) -> (* tac; [ tac1 | ... ] *)
72 (tactic_of_ast status tactic)
73 (List.map (tactic_of_ast status) tactics)
74 | GrafiteAst.First (loc, tactics) ->
75 Tacticals.first (List.map (tactic_of_ast status) tactics)
76 | GrafiteAst.Try (loc, tactic) ->
77 Tacticals.try_tactic (tactic_of_ast status tactic)
78 | GrafiteAst.Solve (loc, tactics) ->
79 Tacticals.solve_tactics (List.map (tactic_of_ast status) tactics)
80 | GrafiteAst.Progress (loc, tactic) ->
81 Tacticals.progress_tactic (tactic_of_ast status tactic)
82 (* First order tactics *)
83 | GrafiteAst.Absurd (_, term) -> Tactics.absurd term
84 | GrafiteAst.Apply (_, term) -> Tactics.apply term
85 | GrafiteAst.ApplyRule (_, term) -> Tactics.apply term
86 | GrafiteAst.ApplyP (_, term) -> Tactics.applyP term
87 | GrafiteAst.ApplyS (_, term, params) ->
88 Tactics.applyS ~term ~params ~dbd:(LibraryDb.instance ())
89 ~universe:status.GrafiteTypes.universe
90 | GrafiteAst.Assumption _ -> Tactics.assumption
91 | GrafiteAst.AutoBatch (_,params) ->
92 Tactics.auto ~params ~dbd:(LibraryDb.instance ())
93 ~universe:status.GrafiteTypes.universe
94 | GrafiteAst.Cases (_, what, pattern, (howmany, names)) ->
95 Tactics.cases_intros ?howmany ~mk_fresh_name_callback:(namer_of names)
97 | GrafiteAst.Change (_, pattern, with_what) ->
98 Tactics.change ~pattern with_what
99 | GrafiteAst.Clear (_,id) -> Tactics.clear id
100 | GrafiteAst.ClearBody (_,id) -> Tactics.clearbody id
101 | GrafiteAst.Compose (_,t1,t2,times,(howmany, names)) ->
102 Tactics.compose times t1 t2 ?howmany
103 ~mk_fresh_name_callback:(namer_of names)
104 | GrafiteAst.Contradiction _ -> Tactics.contradiction
105 | GrafiteAst.Constructor (_, n) -> Tactics.constructor n
106 | GrafiteAst.Cut (_, ident, term) ->
107 let names = match ident with None -> [] | Some id -> [Some id] in
108 Tactics.cut ~mk_fresh_name_callback:(namer_of names) term
109 | GrafiteAst.Decompose (_, names) ->
110 let mk_fresh_name_callback = namer_of names in
111 Tactics.decompose ~mk_fresh_name_callback ()
112 | GrafiteAst.Demodulate (_, params) ->
114 ~dbd:(LibraryDb.instance ()) ~params
115 ~universe:status.GrafiteTypes.universe
116 | GrafiteAst.Destruct (_,xterms) -> Tactics.destruct xterms
117 | GrafiteAst.Elim (_, what, using, pattern, (depth, names)) ->
118 Tactics.elim_intros ?using ?depth ~mk_fresh_name_callback:(namer_of names)
120 | GrafiteAst.ElimType (_, what, using, (depth, names)) ->
121 Tactics.elim_type ?using ?depth ~mk_fresh_name_callback:(namer_of names)
123 | GrafiteAst.Exact (_, term) -> Tactics.exact term
124 | GrafiteAst.Exists _ -> Tactics.exists
125 | GrafiteAst.Fail _ -> Tactics.fail
126 | GrafiteAst.Fold (_, reduction_kind, term, pattern) ->
128 match reduction_kind with
130 PET.const_lazy_reduction
131 (CicReduction.normalize ~delta:false ~subst:[])
132 | `Simpl -> PET.const_lazy_reduction ProofEngineReduction.simpl
134 PET.const_lazy_reduction (ProofEngineReduction.unfold ?what:None)
135 | `Unfold (Some lazy_term) ->
136 (fun context metasenv ugraph ->
137 let what, metasenv, ugraph = lazy_term context metasenv ugraph in
138 ProofEngineReduction.unfold ~what, metasenv, ugraph)
140 PET.const_lazy_reduction (CicReduction.whd ~delta:false ~subst:[])
142 Tactics.fold ~reduction ~term ~pattern
143 | GrafiteAst.Fourier _ -> Tactics.fourier
144 | GrafiteAst.FwdSimpl (_, hyp, names) ->
145 Tactics.fwd_simpl ~mk_fresh_name_callback:(namer_of names)
146 ~dbd:(LibraryDb.instance ()) hyp
147 | GrafiteAst.Generalize (_,pattern,ident) ->
148 let names = match ident with None -> [] | Some id -> [Some id] in
149 Tactics.generalize ~mk_fresh_name_callback:(namer_of names) pattern
150 | GrafiteAst.IdTac _ -> Tactics.id
151 | GrafiteAst.Intros (_, (howmany, names)) ->
152 PrimitiveTactics.intros_tac ?howmany
153 ~mk_fresh_name_callback:(namer_of names) ()
154 | GrafiteAst.Inversion (_, term) ->
155 Tactics.inversion term
156 | GrafiteAst.LApply (_, linear, how_many, to_what, what, ident) ->
157 let names = match ident with None -> [] | Some id -> [Some id] in
158 Tactics.lapply ~mk_fresh_name_callback:(namer_of names)
159 ~linear ?how_many ~to_what what
160 | GrafiteAst.Left _ -> Tactics.left
161 | GrafiteAst.LetIn (loc,term,name) ->
162 Tactics.letin term ~mk_fresh_name_callback:(namer_of [Some name])
163 | GrafiteAst.Reduce (_, reduction_kind, pattern) ->
164 (match reduction_kind with
165 | `Normalize -> Tactics.normalize ~pattern
166 | `Simpl -> Tactics.simpl ~pattern
167 | `Unfold what -> Tactics.unfold ~pattern what
168 | `Whd -> Tactics.whd ~pattern)
169 | GrafiteAst.Reflexivity _ -> Tactics.reflexivity
170 | GrafiteAst.Replace (_, pattern, with_what) ->
171 Tactics.replace ~pattern ~with_what
172 | GrafiteAst.Rewrite (_, direction, t, pattern, names) ->
173 EqualityTactics.rewrite_tac ~direction ~pattern t
174 (* to be replaced with ~mk_fresh_name_callback:(namer_of names) *)
175 (List.map (function Some s -> s | None -> assert false) names)
176 | GrafiteAst.Right _ -> Tactics.right
177 | GrafiteAst.Ring _ -> Tactics.ring
178 | GrafiteAst.Split _ -> Tactics.split
179 | GrafiteAst.Symmetry _ -> Tactics.symmetry
180 | GrafiteAst.Transitivity (_, term) -> Tactics.transitivity term
181 (* Implementazioni Aggiunte *)
182 | GrafiteAst.Assume (_, id, t) -> Declarative.assume id t
183 | GrafiteAst.Suppose (_, t, id, t1) -> Declarative.suppose t id t1
184 | GrafiteAst.By_just_we_proved (_, just, ty, id, t1) ->
185 Declarative.by_just_we_proved ~dbd:(LibraryDb.instance())
186 ~universe:status.GrafiteTypes.universe just ty id t1
187 | GrafiteAst.We_need_to_prove (_, t, id, t2) ->
188 Declarative.we_need_to_prove t id t2
189 | GrafiteAst.Bydone (_, t) ->
190 Declarative.bydone ~dbd:(LibraryDb.instance())
191 ~universe:status.GrafiteTypes.universe t
192 | GrafiteAst.We_proceed_by_cases_on (_, t, t1) ->
193 Declarative.we_proceed_by_cases_on t t1
194 | GrafiteAst.We_proceed_by_induction_on (_, t, t1) ->
195 Declarative.we_proceed_by_induction_on t t1
196 | GrafiteAst.Byinduction (_, t, id) -> Declarative.byinduction t id
197 | GrafiteAst.Thesisbecomes (_, t) -> Declarative.thesisbecomes t
198 | GrafiteAst.ExistsElim (_, just, id1, t1, id2, t2) ->
199 Declarative.existselim ~dbd:(LibraryDb.instance())
200 ~universe:status.GrafiteTypes.universe just id1 t1 id2 t2
201 | GrafiteAst.Case (_,id,params) -> Declarative.case id params
202 | GrafiteAst.AndElim(_,just,id1,t1,id2,t2) ->
203 Declarative.andelim ~dbd:(LibraryDb.instance ())
204 ~universe:status.GrafiteTypes.universe just id1 t1 id2 t2
205 | GrafiteAst.RewritingStep (_,termine,t1,t2,cont) ->
206 Declarative.rewritingstep ~dbd:(LibraryDb.instance ())
207 ~universe:status.GrafiteTypes.universe termine t1 t2 cont
209 let classify_tactic tactic =
211 (* tactics that can't close the goal (return a goal we want to "select") *)
212 | GrafiteAst.Rewrite _
214 | GrafiteAst.Replace _
215 | GrafiteAst.Reduce _
217 | GrafiteAst.Generalize _
220 | GrafiteAst.Decompose _ -> true
221 (* tactics like apply *)
224 let reorder_metasenv start refine tactic goals current_goal always_opens_a_goal=
225 (* let print_m name metasenv =
226 prerr_endline (">>>>> " ^ name);
227 prerr_endline (CicMetaSubst.ppmetasenv [] metasenv)
229 (* phase one calculates:
230 * new_goals_from_refine: goals added by refine
231 * head_goal: the first goal opened by ythe tactic
232 * other_goals: other goals opened by the tactic
234 let new_goals_from_refine = PEH.compare_metasenvs start refine in
235 let new_goals_from_tactic = PEH.compare_metasenvs refine tactic in
236 let head_goal, other_goals, goals =
238 | [] -> None,[],goals
240 (* assert (List.mem hd new_goals_from_tactic);
241 * invalidato dalla goal_tac
243 Some hd, List.filter ((<>) hd) new_goals_from_tactic, List.filter ((<>)
248 | None -> new_goals_from_refine @ other_goals
249 | Some x -> x :: new_goals_from_refine @ other_goals
251 (* extract the metas generated by refine and tactic *)
252 let metas_for_tactic_head =
255 | Some head_goal -> List.filter (fun (n,_,_) -> n = head_goal) tactic in
256 let metas_for_tactic_goals =
258 (fun x -> List.find (fun (metano,_,_) -> metano = x) tactic)
261 let metas_for_refine_goals =
262 List.filter (fun (n,_,_) -> List.mem n new_goals_from_refine) tactic in
263 let produced_metas, goals =
265 if always_opens_a_goal then
266 metas_for_tactic_head @ metas_for_refine_goals @
267 metas_for_tactic_goals
269 (* print_m "metas_for_refine_goals" metas_for_refine_goals;
270 print_m "metas_for_tactic_head" metas_for_tactic_head;
271 print_m "metas_for_tactic_goals" metas_for_tactic_goals; *)
272 metas_for_refine_goals @ metas_for_tactic_head @
273 metas_for_tactic_goals
276 let goals = List.map (fun (metano, _, _) -> metano) produced_metas in
277 produced_metas, goals
279 (* residual metas, preserving the original order *)
284 | (metano, _, _) :: tl when metano = e ->
285 [], List.map (fun (x,_,_) -> x) tl
286 | (metano, _, _) :: tl -> let b, a = split e tl in metano :: b, a
288 let find n metasenv =
290 Some (List.find (fun (metano, _, _) -> metano = n) metasenv)
291 with Not_found -> None
296 match find n tactic with
300 let before_l, after_l = split current_goal start in
302 List.filter (fun x -> not (List.mem x produced_goals)) before_l in
304 List.filter (fun x -> not (List.mem x produced_goals)) after_l in
305 let before = extract before_l in
306 let after = extract after_l in
310 print_m "BEGIN" start;
311 prerr_endline ("goal was: " ^ string_of_int current_goal);
312 prerr_endline ("and metas from refine are:");
314 (fun t -> prerr_string (" " ^ string_of_int t))
315 new_goals_from_refine;
317 print_m "before" before;
318 print_m "metas_for_tactic_head" metas_for_tactic_head;
319 print_m "metas_for_refine_goals" metas_for_refine_goals;
320 print_m "metas_for_tactic_goals" metas_for_tactic_goals;
321 print_m "produced_metas" produced_metas;
322 print_m "after" after;
323 |+ FINE DEBUG CODE +| *)
324 before @ produced_metas @ after, goals
326 let apply_tactic ~disambiguate_tactic (text,prefix_len,tactic) (status, goal) =
327 let starting_metasenv = GrafiteTypes.get_proof_metasenv status in
328 let before = List.map (fun g, _, _ -> g) starting_metasenv in
329 let status, tactic = disambiguate_tactic status goal (text,prefix_len,tactic) in
330 let metasenv_after_refinement = GrafiteTypes.get_proof_metasenv status in
331 let proof = GrafiteTypes.get_current_proof status in
332 let proof_status = proof, goal in
333 let always_opens_a_goal = classify_tactic tactic in
334 let tactic = tactic_of_ast status tactic in
335 let (proof, opened) = ProofEngineTypes.apply_tactic tactic proof_status in
336 let after = ProofEngineTypes.goals_of_proof proof in
337 let opened_goals, closed_goals = Tacticals.goals_diff ~before ~after ~opened in
338 let proof, opened_goals =
339 let uri, metasenv_after_tactic, _subst, t, ty, attrs = proof in
340 let reordered_metasenv, opened_goals =
343 metasenv_after_refinement metasenv_after_tactic
344 opened goal always_opens_a_goal
346 let proof' = uri, reordered_metasenv, _subst, t, ty, attrs in
349 let incomplete_proof =
350 match status.GrafiteTypes.proof_status with
351 | GrafiteTypes.Incomplete_proof p -> p
354 { status with GrafiteTypes.proof_status =
355 GrafiteTypes.Incomplete_proof
356 { incomplete_proof with GrafiteTypes.proof = proof } },
357 opened_goals, closed_goals
359 let apply_atomic_tactical ~disambiguate_tactic ~patch (text,prefix_len,tactic) (status, goal) =
360 let starting_metasenv = GrafiteTypes.get_proof_metasenv status in
361 let before = List.map (fun g, _, _ -> g) starting_metasenv in
362 let status, tactic = disambiguate_tactic status goal (text,prefix_len,tactic) in
363 let metasenv_after_refinement = GrafiteTypes.get_proof_metasenv status in
364 let proof = GrafiteTypes.get_current_proof status in
365 let proof_status = proof, goal in
366 let always_opens_a_goal = classify_tactic tactic in
367 let tactic = tactic_of_ast status tactic in
368 let tactic = patch tactic in
369 let (proof, opened) = ProofEngineTypes.apply_tactic tactic proof_status in
370 let after = ProofEngineTypes.goals_of_proof proof in
371 let opened_goals, closed_goals = Tacticals.goals_diff ~before ~after ~opened in
372 let proof, opened_goals =
373 let uri, metasenv_after_tactic, _subst, t, ty, attrs = proof in
374 let reordered_metasenv, opened_goals =
377 metasenv_after_refinement metasenv_after_tactic
378 opened goal always_opens_a_goal
380 let proof' = uri, reordered_metasenv, _subst, t, ty, attrs in
383 let incomplete_proof =
384 match status.GrafiteTypes.proof_status with
385 | GrafiteTypes.Incomplete_proof p -> p
388 { status with GrafiteTypes.proof_status =
389 GrafiteTypes.Incomplete_proof
390 { incomplete_proof with GrafiteTypes.proof = proof } },
391 opened_goals, closed_goals
394 'term 'lazy_term 'reduction 'obj 'ident.
396 (GrafiteTypes.status ->
397 ProofEngineTypes.goal ->
398 (('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic)
399 disambiguator_input ->
400 GrafiteTypes.status *
401 (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
403 disambiguate_command:
404 (GrafiteTypes.status ->
405 (('term,'obj) GrafiteAst.command) disambiguator_input ->
406 GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
409 (GrafiteTypes.status ->
410 (('term,'lazy_term) GrafiteAst.macro) disambiguator_input ->
411 Cic.context -> GrafiteTypes.status * (Cic.term,Cic.lazy_term) GrafiteAst.macro) ->
413 ?do_heavy_checks:bool ->
414 GrafiteTypes.status ->
415 (('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.statement)
416 disambiguator_input ->
417 GrafiteTypes.status * UriManager.uri list
420 type 'a eval_command =
422 disambiguate_command:
423 (GrafiteTypes.status -> (('term,'obj) GrafiteAst.command) disambiguator_input ->
424 GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
425 options -> GrafiteTypes.status ->
426 (('term,'obj) GrafiteAst.command) disambiguator_input ->
427 GrafiteTypes.status * UriManager.uri list
430 type 'a eval_comment =
431 {ecm_go: 'term 'lazy_term 'reduction_kind 'obj 'ident.
432 disambiguate_command:
433 (GrafiteTypes.status -> (('term,'obj) GrafiteAst.command) disambiguator_input ->
434 GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
435 options -> GrafiteTypes.status ->
436 (('term,'lazy_term,'reduction_kind,'obj,'ident) GrafiteAst.comment) disambiguator_input ->
437 GrafiteTypes.status * UriManager.uri list
440 type 'a eval_executable =
441 {ee_go: 'term 'lazy_term 'reduction 'obj 'ident.
443 (GrafiteTypes.status ->
444 ProofEngineTypes.goal ->
445 (('term, 'lazy_term, 'reduction, 'ident) GrafiteAst.tactic)
446 disambiguator_input ->
447 GrafiteTypes.status *
448 (Cic.term, Cic.lazy_term, Cic.lazy_term GrafiteAst.reduction, string) GrafiteAst.tactic) ->
450 disambiguate_command:
451 (GrafiteTypes.status ->
452 (('term,'obj) GrafiteAst.command) disambiguator_input ->
453 GrafiteTypes.status * (Cic.term,Cic.obj) GrafiteAst.command) ->
456 (GrafiteTypes.status ->
457 (('term,'lazy_term) GrafiteAst.macro) disambiguator_input ->
458 Cic.context -> GrafiteTypes.status * (Cic.term,Cic.lazy_term) GrafiteAst.macro) ->
461 GrafiteTypes.status ->
462 (('term, 'lazy_term, 'reduction, 'obj, 'ident) GrafiteAst.code) disambiguator_input ->
463 GrafiteTypes.status * UriManager.uri list
466 type 'a eval_from_moo =
467 { efm_go: GrafiteTypes.status -> string -> GrafiteTypes.status }
469 let coercion_moo_statement_of (uri,arity, saturations,_) =
471 (HExtlib.dummy_floc, CicUtil.term_of_uri uri, false, arity, saturations)
473 let eval_unification_hint status t =
475 NCicUnifHint.add_user_provided_hint t;
479 let add_coercions_of_lemmas lemmas status =
483 match CoercDb.is_a_coercion (Cic.Const (uri,[])) with
485 | Some (_,tgt,_,sat,_) ->
486 let arity = match tgt with CoercDb.Fun n -> n | _ -> 0 in
487 Some (coercion_moo_statement_of (uri,arity,sat,0)))
490 let status = GrafiteTypes.add_moo_content moo_content status in
491 {status with GrafiteTypes.coercions = CoercDb.dump () },
494 let eval_coercion status ~add_composites uri arity saturations =
496 try CicUtil.uri_of_term uri
497 with Invalid_argument _ ->
498 raise (Invalid_argument "coercion can only be constants/constructors")
501 GrafiteSync.add_coercion ~add_composites
502 ~pack_coercion_obj:CicRefine.pack_coercion_obj
503 status uri arity saturations (GrafiteTypes.get_baseuri status) in
504 let moo_content = coercion_moo_statement_of (uri,arity,saturations,0) in
505 let status = GrafiteTypes.add_moo_content [moo_content] status in
506 add_coercions_of_lemmas lemmas status
508 let eval_prefer_coercion status c =
510 try CicUtil.uri_of_term c
511 with Invalid_argument _ ->
512 raise (Invalid_argument "coercion can only be constants/constructors")
514 let status = GrafiteSync.prefer_coercion status uri in
515 let moo_content = GrafiteAst.PreferCoercion (HExtlib.dummy_floc,c) in
516 let status = GrafiteTypes.add_moo_content [moo_content] status in
519 module MatitaStatus =
521 type input_status = GrafiteTypes.status * ProofEngineTypes.goal
524 GrafiteTypes.status * ProofEngineTypes.goal list * ProofEngineTypes.goal list
526 type tactic = input_status -> output_status
528 let mk_tactic tac = tac
529 let apply_tactic tac = tac
530 let goals (_, opened, closed) = opened, closed
531 let get_stack (status, _) = GrafiteTypes.get_stack status
533 let set_stack stack (status, opened, closed) =
534 GrafiteTypes.set_stack stack status, opened, closed
536 let inject (status, _) = (status, [], [])
537 let focus goal (status, _, _) = (status, goal)
540 module MatitaTacticals = Continuationals.Make(MatitaStatus)
542 let tactic_of_ast' tac =
543 MatitaTacticals.Tactical (MatitaTacticals.Tactic (MatitaStatus.mk_tactic tac))
545 let punctuation_tactical_of_ast (text,prefix_len,punct) =
547 | GrafiteAst.Dot _loc -> MatitaTacticals.Dot
548 | GrafiteAst.Semicolon _loc -> MatitaTacticals.Semicolon
549 | GrafiteAst.Branch _loc -> MatitaTacticals.Branch
550 | GrafiteAst.Shift _loc -> MatitaTacticals.Shift
551 | GrafiteAst.Pos (_loc, i) -> MatitaTacticals.Pos i
552 | GrafiteAst.Merge _loc -> MatitaTacticals.Merge
553 | GrafiteAst.Wildcard _loc -> MatitaTacticals.Wildcard
555 let non_punctuation_tactical_of_ast (text,prefix_len,punct) =
557 | GrafiteAst.Focus (_loc,goals) -> MatitaTacticals.Focus goals
558 | GrafiteAst.Unfocus _loc -> MatitaTacticals.Unfocus
559 | GrafiteAst.Skip _loc -> MatitaTacticals.Tactical MatitaTacticals.Skip
561 let eval_tactical status tac =
562 let status, _, _ = MatitaTacticals.eval tac (status, ~-1) in
563 let status = (* is proof completed? *)
564 match status.GrafiteTypes.proof_status with
565 | GrafiteTypes.Incomplete_proof
566 { GrafiteTypes.stack = stack; proof = proof }
567 when Continuationals.Stack.is_empty stack ->
568 { status with GrafiteTypes.proof_status = GrafiteTypes.Proof proof }
573 let add_obj = GrafiteSync.add_obj ~pack_coercion_obj:CicRefine.pack_coercion_obj
575 let rec eval_command = {ec_go = fun ~disambiguate_command opts status
576 (text,prefix_len,cmd) ->
577 let status,cmd = disambiguate_command status (text,prefix_len,cmd) in
580 | GrafiteAst.Index (loc,None,uri) ->
581 assert false (* TODO: for user input *)
582 | GrafiteAst.Index (loc,Some key,uri) ->
583 let universe = Universe.index
584 status.GrafiteTypes.universe key (CicUtil.term_of_uri uri) in
585 let status = {status with GrafiteTypes.universe = universe} in
588 let candidates = Universe.get_candidates status.GrafiteTypes.universe key in
589 ("candidates for " ^ (CicPp.ppterm key) ^ " = " ^
590 (String.concat "\n" (List.map CicPp.ppterm candidates)))
594 let status = GrafiteTypes.add_moo_content [cmd] status in
596 | GrafiteAst.PreferCoercion (loc, coercion) ->
597 eval_prefer_coercion status coercion
598 | GrafiteAst.Coercion (loc, uri, add_composites, arity, saturations) ->
599 eval_coercion status ~add_composites uri arity saturations
600 | GrafiteAst.UnificationHint (loc, t) ->
601 eval_unification_hint status t
602 | GrafiteAst.Default (loc, what, uris) as cmd ->
603 LibraryObjects.set_default what uris;
604 GrafiteTypes.add_moo_content [cmd] status,[]
605 | GrafiteAst.Drop loc -> raise Drop
606 | GrafiteAst.Include (loc, baseuri) ->
607 let moopath_rw, moopath_r =
608 LibraryMisc.obj_file_of_baseuri
609 ~must_exist:false ~baseuri ~writable:true,
610 LibraryMisc.obj_file_of_baseuri
611 ~must_exist:false ~baseuri ~writable:false
614 if Sys.file_exists moopath_r then moopath_r else
615 if Sys.file_exists moopath_rw then moopath_rw else
616 raise (IncludedFileNotCompiled (moopath_rw,baseuri))
618 let status = eval_from_moo.efm_go status moopath in
620 let lt_uri = UriManager.uri_of_string "cic:/matita/nat/orders/lt.con" in
621 let nat_uri = UriManager.uri_of_string "cic:/matita/nat/nat/nat.ind" in
622 let nat = Cic.MutInd(nat_uri,0,[]) in
623 let zero = Cic.MutConstruct(nat_uri,0,1,[]) in
624 let succ = Cic.MutConstruct(nat_uri,0,2,[]) in
625 let fake= Cic.Meta(-1,[]) in
626 let term= Cic.Appl [Cic.Const (lt_uri,[]);zero;Cic.Appl[succ;zero]] in let msg =
627 let candidates = Universe.get_candidates status.GrafiteTypes.universe term in
628 ("candidates for " ^ (CicPp.ppterm term) ^ " = " ^
629 (String.concat "\n" (List.map CicPp.ppterm candidates)))
634 | GrafiteAst.Print (_,"proofterm") ->
635 let _,_,_,p,_, _ = GrafiteTypes.get_current_proof status in
636 prerr_endline (Auto.pp_proofterm (Lazy.force p));
638 | GrafiteAst.Print (_,_) -> status,[]
639 | GrafiteAst.Qed loc ->
640 let uri, metasenv, _subst, bo, ty, attrs =
641 match status.GrafiteTypes.proof_status with
642 | GrafiteTypes.Proof (Some uri, metasenv, subst, body, ty, attrs) ->
643 uri, metasenv, subst, body, ty, attrs
644 | GrafiteTypes.Proof (None, metasenv, subst, body, ty, attrs) ->
645 raise (GrafiteTypes.Command_error
646 ("Someone allows to start a theorem without giving the "^
647 "name/uri. This should be fixed!"))
650 (GrafiteTypes.Command_error "You can't Qed an incomplete theorem")
652 if metasenv <> [] then
654 (GrafiteTypes.Command_error
655 "Proof not completed! metasenv is not empty!");
656 let name = UriManager.name_of_uri uri in
657 let obj = Cic.Constant (name,Some (Lazy.force bo),ty,[],attrs) in
658 let status, lemmas = add_obj uri obj status in
660 GrafiteTypes.proof_status = GrafiteTypes.No_proof},
661 (*CSC: I throw away the arities *)
663 | GrafiteAst.Relation (loc, id, a, aeq, refl, sym, trans) ->
664 Setoids.add_relation id a aeq refl sym trans;
665 status, [] (*CSC: TO BE FIXED *)
666 | GrafiteAst.Set (loc, name, value) -> status, []
667 (* GrafiteTypes.set_option status name value,[] *)
668 | GrafiteAst.Obj (loc,obj) ->
671 Cic.Constant (name,_,_,_,_)
672 | Cic.CurrentProof (name,_,_,_,_,_) -> ".con",name
673 | Cic.InductiveDefinition (types,_,_,_) ->
675 (match types with (name,_,_,_)::_ -> name | _ -> assert false)
676 | _ -> assert false in
677 let buri = GrafiteTypes.get_baseuri status in
678 let uri = UriManager.uri_of_string (buri ^ "/" ^ name ^ ext) in
679 let obj = CicRefine.pack_coercion_obj obj in
680 let metasenv = GrafiteTypes.get_proof_metasenv status in
682 | Cic.CurrentProof (_,metasenv',bo,ty,_, attrs) ->
683 let name = UriManager.name_of_uri uri in
684 if not(CicPp.check name ty) then
685 HLog.warn ("Bad name: " ^ name);
686 if opts.do_heavy_checks then
688 let dbd = LibraryDb.instance () in
689 let similar = Whelp.match_term ~dbd ty in
690 let similar_len = List.length similar in
691 if similar_len> 30 then
693 ("Duplicate check will compare your theorem with " ^
694 string_of_int similar_len ^
695 " theorems, this may take a while."));
699 let t = CicUtil.term_of_uri u in
701 CicTypeChecker.type_of_aux'
702 metasenv' [] t CicUniv.oblivion_ugraph
704 fst(CicReduction.are_convertible [] ty' ty g))
707 (match convertible with
711 ("Theorem already proved: " ^ UriManager.string_of_uri x ^
712 "\nPlease use a variant."));
715 let initial_proof = (Some uri, metasenv', _subst, lazy bo, ty, attrs) in
716 let initial_stack = Continuationals.Stack.of_metasenv metasenv' in
717 { status with GrafiteTypes.proof_status =
718 GrafiteTypes.Incomplete_proof
719 { GrafiteTypes.proof = initial_proof; stack = initial_stack } },
722 if metasenv <> [] then
723 raise (GrafiteTypes.Command_error (
724 "metasenv not empty while giving a definition with body: " ^
725 CicMetaSubst.ppmetasenv [] metasenv));
726 let status, lemmas = add_obj uri obj status in
727 let status,new_lemmas =
728 add_coercions_of_lemmas lemmas status
730 {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},
731 uri::new_lemmas@lemmas
733 match status.GrafiteTypes.proof_status with
734 GrafiteTypes.Intermediate _ ->
735 {status with GrafiteTypes.proof_status = GrafiteTypes.No_proof},uris
738 } and eval_executable = {ee_go = fun ~disambiguate_tactic ~disambiguate_command
739 ~disambiguate_macro opts status (text,prefix_len,ex) ->
741 | GrafiteAst.Tactic (_(*loc*), Some tac, punct) ->
742 let tac = apply_tactic ~disambiguate_tactic (text,prefix_len,tac) in
743 let status = eval_tactical status (tactic_of_ast' tac) in
744 (* CALL auto on every goal, easy way of testing it
747 (loc, ([],["depth","2";"timeout","1";"type","1"])) in
749 let auto = apply_tactic ~disambiguate_tactic ("",0,auto) in
750 let _ = eval_tactical status (tactic_of_ast' auto) in
751 print_endline "GOOD"; ()
752 with ProofEngineTypes.Fail _ -> print_endline "BAD" | _ -> ());*)
754 (punctuation_tactical_of_ast (text,prefix_len,punct)),[]
755 | GrafiteAst.Tactic (_, None, punct) ->
757 (punctuation_tactical_of_ast (text,prefix_len,punct)),[]
758 | GrafiteAst.NonPunctuationTactical (_, tac, punct) ->
761 (non_punctuation_tactical_of_ast (text,prefix_len,tac))
764 (punctuation_tactical_of_ast (text,prefix_len,punct)),[]
765 | GrafiteAst.Command (_, cmd) ->
766 eval_command.ec_go ~disambiguate_command opts status (text,prefix_len,cmd)
767 | GrafiteAst.Macro (loc, macro) ->
768 raise (Macro (loc,disambiguate_macro status (text,prefix_len,macro)))
770 } and eval_from_moo = {efm_go = fun status fname ->
772 ("",0,GrafiteAst.Executable (HExtlib.dummy_floc,
773 GrafiteAst.Command (HExtlib.dummy_floc,
776 let moo = GrafiteMarshal.load_moo fname in
779 let ast = ast_of_cmd ast in
782 ~disambiguate_tactic:(fun status _ (_,_,tactic) -> status,tactic)
783 ~disambiguate_command:(fun status (_,_,cmd) -> status,cmd)
784 ~disambiguate_macro:(fun _ _ -> assert false)
790 } and eval_ast = {ea_go = fun ~disambiguate_tactic ~disambiguate_command
791 ~disambiguate_macro ?(do_heavy_checks=false) status
794 let opts = { do_heavy_checks = do_heavy_checks ; } in
796 | GrafiteAst.Executable (_,ex) ->
797 eval_executable.ee_go ~disambiguate_tactic ~disambiguate_command
798 ~disambiguate_macro opts status (text,prefix_len,ex)
799 | GrafiteAst.Comment (_,c) ->
800 eval_comment.ecm_go ~disambiguate_command opts status (text,prefix_len,c)
801 } and eval_comment = { ecm_go = fun ~disambiguate_command opts status (text,prefix_len,c) ->
807 let eval_ast = eval_ast.ea_go