1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
|
(*i camlp4deps: "parsing/grammar.cma" i*)
(*Toplevel loop for the communication between Coq and Centaur *)
open Names;;
open Nameops;;
open Util;;
open Ast;;
open Term;;
open Pp;;
open Libnames;;
open Libobject;;
open Library;;
open Vernacinterp;;
open Evd;;
open Proof_trees;;
open Termast;;
open Tacmach;;
open Pfedit;;
open Proof_type;;
open Parsing;;
open Environ;;
open Declare;;
open Declarations;;
open Rawterm;;
open Reduction;;
open Classops;;
open Vernacinterp;;
open Vernac;;
open Command;;
open Protectedtoplevel;;
open Coqast;;
open Line_oriented_parser;;
open Xlate;;
open Vtp;;
open Ascent;;
open Translate;;
open Name_to_ast;;
open Pbp;;
open Blast;;
(* open Dad;; *)
open Debug_tac;;
open Search;;
open Constrintern;;
open Nametab;;
open Showproof;;
open Showproof_ct;;
open Tacexpr;;
open Vernacexpr;;
let pcoq_started = ref None;;
let if_pcoq f a =
if !pcoq_started <> None then f a else error "Pcoq is not started";;
let text_proof_flag = ref "en";;
let current_proof_name () =
try
string_of_id (get_current_proof_name ())
with
UserError("Pfedit.get_proof", _) -> "";;
let current_goal_index = ref 0;;
let guarded_force_eval_stream (s : std_ppcmds) =
let l = ref [] in
let f elt = l:= elt :: !l in
(try Stream.iter f s with
| _ -> f (Stream.next (str "error guarded_force_eval_stream")));
Stream.of_list (List.rev !l);;
let rec string_of_path p =
match p with [] -> "\n"
| i::p -> (string_of_int i)^" "^ (string_of_path p)
;;
let print_path p =
output_results_nl (str "Path:" ++ str (string_of_path p))
;;
let kill_proof_node index =
let paths = History.historical_undo (current_proof_name()) index in
let _ = List.iter
(fun path -> (traverse_to path;
Pfedit.mutate weak_undo_pftreestate;
traverse_to []))
paths in
History.border_length (current_proof_name());;
(*Message functions, the text of these messages is recognized by the protocols *)
(*of CtCoq *)
let ctf_header message_name request_id =
fnl () ++ str "message" ++ fnl() ++ str message_name ++ fnl() ++
int request_id ++ fnl();;
let ctf_acknowledge_command request_id command_count opt_exn =
let goal_count, goal_index =
if refining() then
let g_count =
List.length
(fst (frontier (proof_of_pftreestate (get_pftreestate ())))) in
g_count, (min g_count !current_goal_index)
else
(0, 0) in
(ctf_header "acknowledge" request_id ++
int command_count ++ fnl() ++
int goal_count ++ fnl () ++
int goal_index ++ fnl () ++
str (current_proof_name()) ++ fnl() ++
(match opt_exn with
Some e -> Cerrors.explain_exn e
| None -> mt ()) ++ fnl() ++ str "E-n-d---M-e-s-s-a-g-e" ++ fnl ());;
let ctf_undoResults = ctf_header "undo_results";;
let ctf_TextMessage = ctf_header "text_proof";;
let ctf_SearchResults = ctf_header "search_results";;
let ctf_OtherGoal = ctf_header "other_goal";;
let ctf_Location = ctf_header "location";;
let ctf_StateMessage = ctf_header "state";;
let ctf_PathGoalMessage () =
fnl () ++ str "message" ++ fnl () ++ str "single_goal" ++ fnl ();;
let ctf_GoalReqIdMessage = ctf_header "single_goal_state";;
let ctf_NewStateMessage = ctf_header "fresh_state";;
let ctf_SavedMessage () = fnl () ++ str "message" ++ fnl () ++
str "saved" ++ fnl();;
let ctf_KilledMessage req_id ngoals =
ctf_header "killed" req_id ++ int ngoals ++ fnl ();;
let ctf_AbortedAllMessage () =
fnl() ++ str "message" ++ fnl() ++ str "aborted_all" ++ fnl();;
let ctf_AbortedMessage request_id na =
ctf_header "aborted_proof" request_id ++ str na ++ fnl () ++
str "E-n-d---M-e-s-s-a-g-e" ++ fnl ();;
let ctf_UserErrorMessage request_id stream =
let stream = guarded_force_eval_stream stream in
ctf_header "user_error" request_id ++ stream ++ fnl() ++
str "E-n-d---M-e-s-s-a-g-e" ++ fnl();;
let ctf_ResetInitialMessage () =
fnl () ++ str "message" ++ fnl () ++ str "reset_initial" ++ fnl ();;
let ctf_ResetIdentMessage request_id s =
ctf_header "reset_ident" request_id ++ str s ++ fnl () ++
str "E-n-d---M-e-s-s-a-g-e" ++ fnl();;
type vtp_tree =
| P_rl of ct_RULE_LIST
| P_r of ct_RULE
| P_s_int of ct_SIGNED_INT_LIST
| P_pl of ct_PREMISES_LIST
| P_cl of ct_COMMAND_LIST
| P_t of ct_TACTIC_COM
| P_text of ct_TEXT
| P_ids of ct_ID_LIST;;
let print_tree t =
(match t with
| P_rl x -> fRULE_LIST x
| P_r x -> fRULE x
| P_s_int x -> fSIGNED_INT_LIST x
| P_pl x -> fPREMISES_LIST x
| P_cl x -> fCOMMAND_LIST x
| P_t x -> fTACTIC_COM x
| P_text x -> fTEXT x
| P_ids x -> fID_LIST x);
print_string "e\nblabla\n";;
let break_happened = ref false;;
let output_results stream vtp_tree =
let _ = Sys.signal Sys.sigint
(Sys.Signal_handle(fun i -> (break_happened := true;()))) in
msg stream;
match vtp_tree with
Some t -> print_tree t
| None -> ();;
let output_results_nl stream =
let _ = Sys.signal Sys.sigint
(Sys.Signal_handle(fun i -> break_happened := true;()))
in
msgnl stream;;
let rearm_break () =
let _ = Sys.signal Sys.sigint (Sys.Signal_handle(fun i -> raise Sys.Break))
in ();;
let check_break () =
if (!break_happened) then
begin
break_happened := false;
raise Sys.Break
end
else ();;
let print_past_goal index =
let path = History.get_path_for_rank (current_proof_name()) index in
try traverse_to path;
let pf = proof_of_pftreestate (get_pftreestate ()) in
output_results (ctf_PathGoalMessage ())
(Some (P_r (translate_goal pf.goal)))
with
| Invalid_argument s ->
((try traverse_to [] with _ -> ());
error "No focused proof (No proof-editing in progress)")
| e -> (try traverse_to [] with _ -> ()); raise e
;;
let show_nth n =
try
let pf = proof_of_pftreestate (get_pftreestate()) in
if (!text_proof_flag<>"off") then
(if n=0
then output_results (ctf_TextMessage !global_request_id)
(Some (P_text (show_proof !text_proof_flag [])))
else
let path = History.get_nth_open_path (current_proof_name()) n in
output_results (ctf_TextMessage !global_request_id)
(Some (P_text (show_proof !text_proof_flag path))))
else
output_results (ctf_GoalReqIdMessage !global_request_id)
(let goal = List.nth (fst (frontier pf))
(n - 1) in
(Some (P_r (translate_goal goal))))
with
| Invalid_argument s ->
error "No focused proof (No proof-editing in progress)";;
(* The rest of the file contains commands that are changed from the plain
Coq distribution *)
let ctv_SEARCH_LIST = ref ([] : ct_PREMISE list);;
(*
let filter_by_module_from_varg_list l =
let dir_list, b = Vernacentries.interp_search_restriction l in
Search.filter_by_module_from_list (dir_list, b);;
*)
let add_search (global_reference:global_reference) assumptions cstr =
try
let id_string =
string_of_qualid (Nametab.shortest_qualid_of_global Idset.empty
global_reference) in
let ast =
try
CT_premise (CT_ident id_string, translate_constr false assumptions cstr)
with Not_found ->
CT_premise (CT_ident id_string,
CT_coerce_ID_to_FORMULA(
CT_ident ("Error printing" ^ id_string))) in
ctv_SEARCH_LIST:= ast::!ctv_SEARCH_LIST
with e -> msgnl (str "add_search raised an exception"); raise e;;
(*
let make_error_stream node_string =
str "The syntax of " ++ str node_string ++
str " is inconsistent with the vernac interpreter entry";;
*)
let ctf_EmptyGoalMessage id =
fnl () ++ str "Empty Goal is a no-op. Fun oh fun." ++ fnl ();;
let print_check judg =
let {uj_val=value; uj_type=typ} = judg in
let value_ct_ast =
(try translate_constr false (Global.env()) value
with UserError(f,str) ->
raise(UserError(f,
Ast.print_ast
(ast_of_constr true (Global.env()) value) ++
fnl () ++ str ))) in
let type_ct_ast =
(try translate_constr false (Global.env()) typ
with UserError(f,str) ->
raise(UserError(f, Ast.print_ast (ast_of_constr true (Global.env())
value) ++ fnl() ++ str))) in
((ctf_SearchResults !global_request_id),
(Some (P_pl
(CT_premises_list
[CT_coerce_TYPED_FORMULA_to_PREMISE
(CT_typed_formula(value_ct_ast,type_ct_ast)
)]))));;
let ct_print_eval ast red_fun env judg =
((if refining() then traverse_to []);
let {uj_val=value; uj_type=typ} = judg in
let nvalue = red_fun value
(* // Attention , ici il faut peut tre utiliser des environnemenst locaux *)
and ntyp = nf_betaiota typ in
(ctf_SearchResults !global_request_id,
Some (P_pl
(CT_premises_list
[CT_eval_result
(xlate_formula ast,
translate_constr false env nvalue,
translate_constr false env ntyp)]))));;
(* The following function is copied from globpr in env/printer.ml *)
let globcv x =
match x with
| Node(_,"MUTIND", (Path(_,sp))::(Num(_,tyi))::_) ->
convert_qualid
(Nametab.shortest_qualid_of_global Idset.empty (IndRef(sp,tyi)))
| Node(_,"MUTCONSTRUCT",(Path(_,sp))::(Num(_,tyi))::(Num(_,i))::_) ->
convert_qualid
(Nametab.shortest_qualid_of_global Idset.empty
(ConstructRef ((sp, tyi), i)))
| _ -> failwith "globcv : unexpected value";;
let pbp_tac_pcoq =
pbp_tac (function (x:raw_tactic_expr) ->
output_results
(ctf_header "pbp_results" !global_request_id)
(Some (P_t(xlate_tactic x))));;
let blast_tac_pcoq =
blast_tac (function (x:raw_tactic_expr) ->
output_results
(ctf_header "pbp_results" !global_request_id)
(Some (P_t(xlate_tactic x))));;
(* <\cpa>
let dad_tac_pcoq =
dad_tac(function x ->
output_results
(ctf_header "pbp_results" !global_request_id)
(Some (P_t(xlate_tactic x))));;
</cpa> *)
let search_output_results () =
output_results
(ctf_SearchResults !global_request_id)
(Some (P_pl (CT_premises_list
(List.rev !ctv_SEARCH_LIST))));;
let debug_tac2_pcoq tac =
(fun g ->
let the_goal = ref (None : goal sigma option) in
let the_ast = ref tac in
let the_path = ref ([] : int list) in
try
let result = report_error tac the_goal the_ast the_path [] g in
(errorlabstrm "DEBUG TACTIC"
(str "no error here " ++ fnl () ++ pr_goal (sig_it g) ++
fnl () ++ str "the tactic is" ++ fnl () ++
Pptactic.pr_glob_tactic tac);
result)
with
e ->
match !the_goal with
None -> raise e
| Some g ->
(output_results
(ctf_Location !global_request_id)
(Some (P_s_int
(CT_signed_int_list
(List.map
(fun n -> CT_coerce_INT_to_SIGNED_INT
(CT_int n))
(clean_path tac
(List.rev !the_path)))))));
(output_results
(ctf_OtherGoal !global_request_id)
(Some (P_r (translate_goal (sig_it g)))));
raise e);;
let rec selectinspect n env =
match env with
[] -> []
| a::tl ->
if n = 0 then
[]
else
match a with
(sp, Lib.Leaf lobj) -> a::(selectinspect (n -1 ) tl)
| _ -> (selectinspect n tl);;
open Term;;
let inspect n =
let env = Global.env() in
let add_search2 x y = add_search x env y in
let l = selectinspect n (Lib.contents_after None) in
ctv_SEARCH_LIST := [];
List.iter
(fun a ->
try
(match a with
oname, Lib.Leaf lobj ->
(match oname, object_tag lobj with
(sp,_), "VARIABLE" ->
let (_, _, v) = get_variable (basename sp) in
add_search2 (Nametab.locate (qualid_of_sp sp)) v
| (sp,kn), "CONSTANT" ->
let {const_type=typ} = Global.lookup_constant kn in
add_search2 (Nametab.locate (qualid_of_sp sp)) typ
| (sp,kn), "MUTUALINDUCTIVE" ->
add_search2 (Nametab.locate (qualid_of_sp sp))
(Pretyping.understand Evd.empty (Global.env())
(RRef(dummy_loc, IndRef(kn,0))))
| _ -> failwith ("unexpected value 1 for "^
(string_of_id (basename (fst oname)))))
| _ -> failwith "unexpected value")
with e -> ())
l;
output_results
(ctf_SearchResults !global_request_id)
(Some
(P_pl (CT_premises_list (List.rev !ctv_SEARCH_LIST))));;
let ct_int_to_TARG n =
CT_coerce_FORMULA_OR_INT_to_TARG
(CT_coerce_ID_OR_INT_to_FORMULA_OR_INT
(CT_coerce_INT_to_ID_OR_INT (CT_int n)));;
let pair_list_to_ct l =
CT_user_tac(CT_ident "pair_int_list",
CT_targ_list
(List.map (fun (a,b) ->
CT_coerce_TACTIC_COM_to_TARG
(CT_user_tac
(CT_ident "pair_int",
CT_targ_list
[ct_int_to_TARG a; ct_int_to_TARG b])))
l));;
(* Annule toutes les commandes qui s'appliquent sur les sous-buts du
but auquel a t applique la n-ime tactique *)
let logical_kill n =
let path = History.get_path_for_rank (current_proof_name()) n in
begin
traverse_to path;
Pfedit.mutate weak_undo_pftreestate;
(let kept_cmds, undone_cmds, remaining_goals, current_goal =
History.logical_undo (current_proof_name()) n in
output_results (ctf_undoResults !global_request_id)
(Some
(P_t
(CT_user_tac
(CT_ident "log_undo_result",
CT_targ_list
[CT_coerce_TACTIC_COM_to_TARG (pair_list_to_ct kept_cmds);
CT_coerce_TACTIC_COM_to_TARG(pair_list_to_ct undone_cmds);
ct_int_to_TARG remaining_goals;
ct_int_to_TARG current_goal])))));
traverse_to []
end;;
let simulate_solve n tac =
let path = History.get_nth_open_path (current_proof_name()) n in
solve_nth n (Tacinterp.hide_interp tac (get_end_tac()));
traverse_to path;
Pfedit.mutate weak_undo_pftreestate;
traverse_to []
let kill_node_verbose n =
let ngoals = kill_proof_node n in
output_results_nl (ctf_KilledMessage !global_request_id ngoals)
let set_text_mode s = text_proof_flag := s
let pcoq_reset_initial() =
output_results(ctf_AbortedAllMessage()) None;
Vernacentries.abort_refine Lib.reset_initial ();
output_results(ctf_ResetInitialMessage()) None;;
let pcoq_reset x =
if refining() then
output_results (ctf_AbortedAllMessage ()) None;
Vernacentries.abort_refine Lib.reset_name (dummy_loc,x);
output_results
(ctf_ResetIdentMessage !global_request_id (string_of_id x)) None;;
VERNAC ARGUMENT EXTEND text_mode
| [ "fr" ] -> [ "fr" ]
| [ "en" ] -> [ "en" ]
| [ "Off" ] -> [ "off" ]
END
VERNAC COMMAND EXTEND TextMode
| [ "Text" "Mode" text_mode(s) ] -> [ set_text_mode s ]
END
VERNAC COMMAND EXTEND OutputGoal
[ "Goal" ] -> [ output_results_nl(ctf_EmptyGoalMessage "") ]
END
VERNAC COMMAND EXTEND OutputGoal
[ "Goal" "Cmd" natural(n) "with" tactic(tac) ] -> [ simulate_solve n tac ]
END
VERNAC COMMAND EXTEND KillProofAfter
| [ "Kill" "Proof" "after" natural(n) ] -> [ kill_node_verbose n ]
END
VERNAC COMMAND EXTEND KillProofAt
| [ "Kill" "Proof" "at" natural(n) ] -> [ kill_node_verbose n ]
END
VERNAC COMMAND EXTEND KillSubProof
[ "Kill" "SubProof" natural(n) ] -> [ logical_kill n ]
END
VERNAC COMMAND EXTEND PcoqReset
[ "Pcoq" "Reset" ident(x) ] -> [ pcoq_reset x ]
END
VERNAC COMMAND EXTEND PcoqResetInitial
[ "Pcoq" "ResetInitial" ] -> [ pcoq_reset_initial() ]
END
let start_proof_hook () =
History.start_proof (current_proof_name());
current_goal_index := 1
let solve_hook n =
let name = current_proof_name () in
let old_n_count = History.border_length name in
let pf = proof_of_pftreestate (get_pftreestate ()) in
let n_goals = (List.length (fst (frontier pf))) + 1 - old_n_count in
begin
current_goal_index := n;
History.push_command name n n_goals
end
let abort_hook s = output_results_nl (ctf_AbortedMessage !global_request_id s)
let interp_search_about_item = function
| SearchRef qid -> GlobSearchRef (Nametab.global qid)
| SearchString s -> GlobSearchString s
let pcoq_search s l =
ctv_SEARCH_LIST:=[];
begin match s with
| SearchAbout sl ->
raw_search_about (filter_by_module_from_list l) add_search
(List.map interp_search_about_item sl)
| SearchPattern c ->
let _,pat = interp_constrpattern Evd.empty (Global.env()) c in
raw_pattern_search (filter_by_module_from_list l) add_search pat
| SearchRewrite c ->
let _,pat = interp_constrpattern Evd.empty (Global.env()) c in
raw_search_rewrite (filter_by_module_from_list l) add_search pat;
| SearchHead locqid ->
filtered_search
(filter_by_module_from_list l) add_search (Nametab.global locqid)
end;
search_output_results()
(* Check sequentially whether the pattern is one of the premises *)
let rec hyp_pattern_filter pat name a c =
let c1 = strip_outer_cast c in
match kind_of_term c with
| Prod(_, hyp, c2) ->
(try
(* let _ = msgnl ((str "WHOLE ") ++ (Printer.prterm c)) in
let _ = msgnl ((str "PAT ") ++ (Printer.pr_pattern pat)) in *)
if Matching.is_matching pat hyp then
(msgnl (str "ok"); true)
else
false
with UserError _ -> false) or
hyp_pattern_filter pat name a c2
| _ -> false;;
let hyp_search_pattern c l =
let _, pat = interp_constrpattern Evd.empty (Global.env()) c in
ctv_SEARCH_LIST := [];
gen_filtered_search
(fun s a c -> (filter_by_module_from_list l s a c &&
(if hyp_pattern_filter pat s a c then
(msgnl (str "ok2"); true) else false)))
(fun s a c -> (msgnl (str "ok3"); add_search s a c));
output_results
(ctf_SearchResults !global_request_id)
(Some
(P_pl (CT_premises_list (List.rev !ctv_SEARCH_LIST))));;
let pcoq_print_name ref =
let results = xlate_vernac_list (name_to_ast ref) in
output_results
(fnl () ++ str "message" ++ fnl () ++ str "PRINT_VALUE" ++ fnl ())
(Some (P_cl results))
let pcoq_print_check j =
let a,b = print_check j in output_results a b
let pcoq_print_eval redfun env c j =
let strm, vtp = ct_print_eval c redfun env j in
output_results strm vtp;;
open Vernacentries
let pcoq_show_goal = function
| Some n -> show_nth n
| None ->
if !pcoq_started = Some true (* = debug *) then
msg (Pfedit.pr_open_subgoals ())
else errorlabstrm "show_goal"
(str "Show must be followed by an integer in Centaur mode");;
let pcoq_hook = {
start_proof = start_proof_hook;
solve = solve_hook;
abort = abort_hook;
search = pcoq_search;
print_name = pcoq_print_name;
print_check = pcoq_print_check;
print_eval = pcoq_print_eval;
show_goal = pcoq_show_goal
}
TACTIC EXTEND Pbp
| [ "Pbp" ident_opt(idopt) natural_list(nl) ] ->
[ if_pcoq pbp_tac_pcoq idopt nl ]
END
TACTIC EXTEND CtDebugTac
| [ "DebugTac" tactic(t) ] -> [ if_pcoq debug_tac2_pcoq (fst t) ]
END
TACTIC EXTEND CtDebugTac2
| [ "DebugTac2" tactic(t) ] -> [ if_pcoq debug_tac2_pcoq (fst t) ]
END
let start_pcoq_mode debug =
begin
pcoq_started := Some debug;
(* <\cpa>
start_dad();
</cpa> *)
declare_in_coq();
(* The following ones are added to enable rich comments in pcoq *)
(* TODO ...
add_tactic "Image" (fun _ -> tclIDTAC);
*)
(* "Comments" moved to Vernacentries, other obsolete ?
List.iter (fun (a,b) -> vinterp_add a b) command_creations;
*)
(* Now hooks in Vernacentries
List.iter (fun (a,b) -> overwriting_vinterp_add a b) command_changes;
if not debug then
List.iter (fun (a,b) -> overwriting_vinterp_add a b) non_debug_changes;
*)
set_pcoq_hook pcoq_hook;
end;;
let start_pcoq () =
start_pcoq_mode false;
set_acknowledge_command ctf_acknowledge_command;
set_start_marker "CENTAUR_RESERVED_TOKEN_start_command";
set_end_marker "CENTAUR_RESERVED_TOKEN_end_command";
raise Vernacexpr.ProtectedLoop;;
let start_pcoq_debug () =
start_pcoq_mode true;
set_acknowledge_command ctf_acknowledge_command;
set_start_marker "--->";
set_end_marker "<---";
raise Vernacexpr.ProtectedLoop;;
VERNAC COMMAND EXTEND HypSearchPattern
[ "HypSearchPattern" constr(pat) ] -> [ hyp_search_pattern pat ([], false) ]
END
VERNAC COMMAND EXTEND StartPcoq
[ "Start" "Pcoq" "Mode" ] -> [ start_pcoq () ]
END
VERNAC COMMAND EXTEND Pcoq_inspect
[ "Pcoq_inspect" ] -> [ inspect 15 ]
END
VERNAC COMMAND EXTEND StartPcoqDebug
| [ "Start" "Pcoq" "Debug" "Mode" ] -> [ start_pcoq_debug () ]
END
|