Combinators for manipulating GrindTactic
s.
TODO: a proper tactic language for grind
.
Equations
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.Meta.Grind.applyToAll.go x [] acc = pure acc.reverse
Instances For
Equations
- x.andThen y goal = do let __discr ← x goal match __discr with | some goals => do let a ← Lean.Meta.Grind.applyToAll y goals pure (some a) | x => pure none
Instances For
Equations
- Lean.Meta.Grind.instAndThenGrindTactic = { andThen := fun (a : Lean.Meta.Grind.GrindTactic) (b : Unit → Lean.Meta.Grind.GrindTactic) => a.andThen (b ()) }
Equations
- x.iterate goal = do let a ← Lean.Meta.Grind.GrindTactic.iterate.go x [goal] [] pure (some a)
Instances For
Equations
Instances For
Equations
- Lean.Meta.Grind.instOrElseGrindTactic = { orElse := fun (a : Lean.Meta.Grind.GrindTactic) (b : Unit → Lean.Meta.Grind.GrindTactic) => a.andThen (b ()) }
Equations
Instances For
Equations
- x.toGrindTactic goal = do let goals ← x goal pure (some goals)