Module Proof
type ttype data={sigma : Evd.evar_map;A representation of the evar_map
EJGA wouldn't it better to just return the proofview?goals : Evar.t list;Focused goals
entry : Proofview.entry;Entry for the proofview
stack : (Evar.t list * Evar.t list) list;A representation of the focus stack
shelf : Evar.t list;A representation of the shelf
given_up : Evar.t list;A representation of the given up goals
name : Names.Id.t;The name of the theorem whose proof is being constructed
poly : bool;polymorphism
}
val data : t -> dataval start : name:Names.Id.t -> poly:bool -> Evd.evar_map -> (Environ.env * EConstr.types) list -> tval dependent_start : name:Names.Id.t -> poly:bool -> Proofview.telescope -> tval is_done : t -> boolval is_complete : t -> boolval partial_proof : t -> EConstr.constr listval compact : t -> t
exceptionOpenProof of Names.Id.t option * open_error_reason
val return : ?pid:Names.Id.t -> t -> Evd.evar_map
val new_focus_kind : unit -> 'a focus_kind
val no_cond : ?loose_end:bool -> 'a focus_kind -> 'a focus_conditionval done_cond : ?loose_end:bool -> 'a focus_kind -> 'a focus_conditionval focus : 'a focus_condition -> 'a -> int -> t -> tval focus_id : 'aa focus_condition -> 'a -> Names.Id.t -> t -> t
val unfocus : 'a focus_kind -> t -> unit -> tval unfocused : t -> bool
val get_at_focus : 'a focus_kind -> t -> 'aval is_last_focus : 'a focus_kind -> t -> boolval no_focused_goal : t -> boolval run_tactic : Environ.env -> 'a Proofview.tactic -> t -> t * (bool * Proofview_monad.Info.tree) * 'aval maximal_unfocus : 'a focus_kind -> t -> tval unshelve : t -> tval pr_proof : t -> Pp.t
module V82 : sig ... end