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
|
(* File to include to get some Coq facilities under the ocaml toplevel.
This file is loaded by include *)
#cd".";;
#directory "parsing";;
#directory "interp";;
#directory "toplevel";;
#directory "library";;
#directory "kernel";;
#directory "pretyping";;
#directory "lib";;
#directory "proofs";;
#directory "tactics";;
#directory "translate";;
#use "top_printers.ml";;
#install_printer (* identifier *) prid;;
#install_printer (* label *) prlab;;
#install_printer prmsid;;
#install_printer prmbid;;
#install_printer prdir;;
#install_printer prmp;;
#install_printer (* section_path *) prsp;;
#install_printer (* qualid *) prqualid;;
#install_printer (* kernel_name *) prkn;;
#install_printer (* constr *) print_pure_constr;;
(* parsing of names *)
let qid = Libnames.qualid_of_string;;
(* parsing of terms *)
let parse_com = Pcoq.parse_string Pcoq.Constr.constr;;
let parse_tac = Pcoq.parse_string Pcoq.Tactic.tactic;;
let parse_vernac = Pcoq.parse_string Pcoq.Vernac_.vernac;;
(* For compatibility reasons *)
let parse_ast = parse_com;;
(* build a term of type rawconstr without type-checking or resolution of
implicit syntax *)
let e s = Constrintern.interp_rawconstr Evd.empty (Global.env()) (parse_ast s);;
(* For compatibility *)
let raw_constr_of_string = e;;
(* build a term of type constr with type-checking and resolution of
implicit syntax *)
let constr_of_string s =
Constrintern.interp_constr Evd.empty (Global.env()) (parse_ast s);;
(* get the body of a constant *)
open Declarations;;
let constbody_of_string s =
let b = Global.lookup_constant (Nametab.locate_constant (qualid_of_sp (path_of_string s))) in
Util.out_some b.const_body;;
(* Get the current goal *)
let getgoal x = top_goal_of_pftreestate (Pfedit.get_pftreestate x);;
let get_nth_goal n = nth_goal_of_pftreestate n (Pfedit.get_pftreestate ());;
let current_goal () = get_nth_goal 1;;
let pf_e gl s =
Constrintern.interp_constr (project gl) (pf_env gl) (parse_ast s);;
open Toplevel
let go = loop
|