Defines the inhabit α tactic, which tries to construct an Inhabited α instance,
constructively or otherwise.
@[implicit_reducible]
Derives Inhabited α from Nonempty α with Classical.choice.
Instances For
@[implicit_reducible]
Derives Inhabited α from Nonempty α without Classical.choice
assuming α is of type Prop.
Instances For
inhabit α tries to derive a Nonempty α instance and
then uses it to make an Inhabited α instance.
If the target is a Prop, this is done constructively. Otherwise, it uses Classical.choice.
Instances For
def
Lean.Elab.Tactic.evalInhabit
(goal : MVarId)
(h_name : Option Ident)
(term : Syntax)
:
TacticM MVarId
evalInhabit takes in the MVarId of the main goal, runs the core portion of the inhabit tactic,
and returns the resulting MVarId