The norm_cast
family of tactics. #
A full description of the tactic, and the use of each theorem category, can be found at https://arxiv.org/abs/2001.10594.
Proves a = b
using the given simp set.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Proves a = b
by simplifying using move and squash lemmas.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Constructs the expression (e : ty)
.
Equations
- Lean.Elab.Tactic.NormCast.mkCoe e ty = do let __discr ← Lean.Meta.coerce? e ty match __discr with | Lean.LOption.some e' => pure e' | x => failure
Instances For
Checks whether an expression is the coercion of some other expression, and if so returns that expression.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Checks whether an expression is a numeral in some type, and if so returns that type and the natural number.
Equations
- One or more equations did not get rendered due to their size.
- Lean.Elab.Tactic.NormCast.isNumeral? e = if e.isConstOf `Nat.zero = true then some (Lean.mkConst `Nat, 0) else none
Instances For
This is the main heuristic used alongside the elim and move lemmas. The goal is to help casts move past operators by adding intermediate casts. An expression of the shape:
op (↑(x : α) : γ) (↑(y : β) : γ)
is rewritten to:
op (↑(↑(x : α) : β) : γ) (↑(y : β) : γ)
when
(↑(↑(x : α) : β) : γ) = (↑(x : α) : γ)
can be proven with a squash lemma
Equations
- One or more equations did not get rendered due to their size.
- Lean.Elab.Tactic.NormCast.splittingProcedure expr = pure { expr := expr, proof? := none, cache := true }
Instances For
Discharging function used during simplification in the "squash" step.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Core rewriting function used in the "squash" step, which moves casts upwards and eliminates them.
It tries to rewrite an expression using the elim and move lemmas. On failure, it calls the splitting procedure heuristic.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If possible, rewrites (n : α)
to (Nat.cast n : α)
where n
is a numeral and α ≠ ℕ
.
Returns a pair of the new expression and proof that they are equal.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The core simplification routine of normCast
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Implementation of the norm_cast
tactic when operating on the main goal.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Implementation of the norm_cast
tactic when operating on a hypothesis.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.