Module Refine
The primitive refine tactic used to fill the holes in partial proofs. This is the recommended way to write tactics when the proof term is easy to write down. Note that this is not the user-level refine tactic defined in Ltac which is actually based on the one below.
The refine tactic
Refinement primitives
val refine : typecheck:bool -> (Evd.evar_map -> Evd.evar_map * EConstr.t) -> unit Proofview.tactic
In
refine ~typecheck t
,t
is a term with holes under someevar_map
context. The termt
is used as a partial solution for the current goal (refine is a goal-dependent tactic), the new holes created byt
become the new subgoals. Exceptions raised during the interpretation oft
are caught and result in tactic failures. Iftypecheck
istrue
t
is type-checked beforehand. Shelved evars and goals are all marked as unresolvable for typeclasses.
val generic_refine : typecheck:bool -> ('a * EConstr.t) Proofview.tactic -> Proofview.Goal.t -> 'a Proofview.tactic
The general version of refine.
Unification constraint handling
val solve_constraints : unit Proofview.tactic
Solve any remaining unification problems, applying heuristics.