(************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* string val version : unit -> string type printing_state = { mutable printing_implicit : bool; mutable printing_coercions : bool; mutable printing_raw_matching : bool; mutable printing_no_notation : bool; mutable printing_all : bool; mutable printing_evar_instances : bool; mutable printing_universes : bool; mutable printing_full_all : bool } val printing_state : printing_state type reset_mark type reset_info = { state : reset_mark; pending : identifier list; pf_depth : int; mutable segment : bool; } val compute_reset_info : unit -> reset_info type backtrack = | BacktrackToNextActiveMark | BacktrackToMark of reset_mark | NoBacktrack type undo_cmds = { n : int; a : int; b : backtrack; p : int; l : (identifier list * int); } val init_undo : unit -> undo_cmds val reset_initial : unit -> unit val reset_to : reset_mark -> unit val reset_to_mod : identifier -> unit val init : unit -> string list val interp : bool -> string -> reset_info * (Util.loc * Vernacexpr.vernac_expr) val interp_last : Util.loc * Vernacexpr.vernac_expr -> unit val interp_and_replace : string -> (reset_info * (Util.loc * Vernacexpr.vernac_expr)) * string (* type hyp = (identifier * constr option * constr) * string *) type hyp = env * evar_map * ((identifier*string) * constr option * constr) * (string * string) type meta = env * evar_map * string type concl = env * evar_map * constr * string type goal = hyp list * concl val get_current_goals : unit -> goal list val get_current_pm_goal : unit -> goal val print_no_goal : unit -> string val process_exn : exn -> string*(Util.loc option) val hyp_menu : hyp -> (string * string) list val concl_menu : concl -> (string * string) list val is_in_coq_lib : string -> bool val is_in_coq_path : string -> bool val is_in_loadpath : string -> bool val make_cases : string -> string list list type tried_tactic = | Interrupted | Success of int (* nb of goals after *) | Failed (* Message to display in lower status bar. *) val current_status : unit -> string