Equations
- One or more equations did not get rendered due to their size.
An AC-compatible ordering.
Recall that an AC-compatible ordering if it is monotonic, well-founded, and total. Both KBO and LPO are AC-compatible. KBO is faster, but we do not cache the weight of each expression in Lean 4. Even if we did, we would need to have a weight where implicit instace arguments are ignored. So, we use a LPO-like term ordering.
Remark: this method is used to implement ordered rewriting. We ignore implicit instance arguments to address an issue reported at issue #972.
Remark: the order is not really total on terms since
- We instance implicit arguments.
- We ignore metadata.
- We ignore universe parameterst at constants.
Equations
- One or more equations did not get rendered due to their size.
unsafe def
Lean.Meta.ACLt.lt.ltPair
(a₁ : Lean.Expr)
(a₂ : Lean.Expr)
(b₁ : Lean.Expr)
(b₂ : Lean.Expr)
:
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Meta.ACLt.lt.someChildGe a b = do let a ← Lean.Meta.ACLt.lt.allChildrenLt a b pure !a
Equations
- One or more equations did not get rendered due to their size.
@[implementedBy Lean.Meta.ACLt.lt]