package coq
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=b1501d686c21836302191ae30f610cca57fb309214c126518ca009363ad2cd3c
doc/coq-core.engine/Proofview/Goal/index.html
Module Proofview.Goal
Source
Type of goals.
concl
, hyps
, env
and sigma
given a goal gl
return respectively the conclusion of gl
, the hypotheses of gl
, the environment of gl
(i.e. the global environment and the hypotheses) and the current evar map.
nf_enter t
applies the goal-dependent tactic t
in each goal independently, in the manner of tclINDEPENDENT
except that the current goal is also given as an argument to t
. The goal is normalised with respect to evars.
Like nf_enter
, but does not normalize the goal beforehand.
Like enter
, but assumes exactly one goal under focus, raising a fatal error otherwise.
Recover the list of current goals under focus, without evar-normalization. FIXME: encapsulate the level in an existential type.
unsolved g
is true
if g
is still unsolved in the current proof state.