package lambdapi
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=04fac3b56d1855795d7d2d2442bc650183bcd71f676c3ea77f37240e33769ce9
sha512=37f7bec3bc48632379ca9fb3eb562a0c0387e54afbdd10fb842b8da70c6dad529bb98c14b9d7cddf44a1d5aa61bba86338d310e6a7b420e95b2996b4fbafc95c
doc/lambdapi.handle/Handle/Proof/index.html
Module Handle.ProofSource
Proofs and tactics.
type goal_typ = {goal_meta : Core.Term.meta;goal_hyps : Core.Env.t;goal_type : Core.Term.term;
}Type of goals.
add_goals_of_problem p gs extends the list of goals gs with the metavariables and constraints of p.
type proof_state = {proof_name : Common.Pos.strloc;(*Name of the theorem.
*)proof_term : Core.Term.meta option;(*Optional metavariable holding the goal associated to a symbol used as a theorem/definition and not just a simple declaration
*)proof_goals : goal list;(*Open goals (focused goal is first).
*)
}Representation of the proof state of a theorem.
finished ps tells whether there are unsolved goals in ps.
pp_goals ppf gl prints the goal list gl to channel ppf.
remove_solved_goals ps removes from the proof state ps the typing goals that are solved.
meta_of_key ps i returns Some m where m is a meta of ps whose key is i, or else it returns None.
focus_env ps returns the scoping environment of the focused goal or the empty environment if there is none.