Documentation

Mathlib.Tactic.CC.Addition

Process when an new equation is added to a congruence closure #

@[inline]

Update the todo field of the state.

Equations
  • One or more equations did not get rendered due to their size.
@[inline]

Update the acTodo field of the state.

Equations
  • One or more equations did not get rendered due to their size.
@[inline]

Read the todo field of the state.

Equations
@[inline]

Read the acTodo field of the state.

Equations
def Mathlib.Tactic.CC.CCM.pushTodo (lhs rhs : Lean.Expr) (H : EntryExpr) (heqProof : Bool) :

Add a new entry to the end of the todo list.

See also pushEq, pushHEq and pushReflEq.

Equations
@[inline]

Add the equality proof H : lhs = rhs to the end of the todo list.

Equations
@[inline]

Add the heterogeneous equality proof H : HEq lhs rhs to the end of the todo list.

Equations
def Mathlib.Tactic.CC.CCM.addOccurrence (parent child : Lean.Expr) (symmTable : Bool) :

Update the child so its parent becomes parent.

Equations
  • One or more equations did not get rendered due to their size.

Record the instance e and add it to the set of known defeq instances.

Equations
  • One or more equations did not get rendered due to their size.

Return the CongruencesKey associated with an expression of the form f a.

Equations

Return the SymmCongruencesKey associated with the equality lhs = rhs.

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.compareSymmAux (lhs₁ rhs₁ lhs₂ rhs₂ : Lean.Expr) :

Auxiliary function for comparing lhs₁ ~ rhs₁ and lhs₂ ~ rhs₂, when ~ is symmetric/commutative. It returns true (equal) for a ~ b b ~ a.

Equations
  • One or more equations did not get rendered due to their size.

Given k₁ := (R₁ lhs₁ rhs₁, `R₁) and k₂ := (R₂ lhs₂ rhs₂, `R₂), return true if R₁ lhs₁ rhs₁ is equivalent to R₂ lhs₂ rhs₂ modulo the symmetry of R₁ and R₂.

Equations
  • One or more equations did not get rendered due to their size.

Given e := R lhs rhs, if R is a reflexive relation and lhs is equivalent to rhs, add equality e = True.

Equations
  • One or more equations did not get rendered due to their size.

If the congruence table (congruences field) has congruent expression to e, add the equality to the todo list. If not, add e to the congruence table.

Equations
  • One or more equations did not get rendered due to their size.

If the symm congruence table (symmCongruences field) has congruent expression to e, add the equality to the todo list. If not, add e to the symm congruence table.

Equations
  • One or more equations did not get rendered due to their size.

Given subsingleton elements a and b which are not necessarily of the same type, if the types of a and b are equivalent, add the (heterogeneous) equality proof between a and b to the todo list.

Equations
  • One or more equations did not get rendered due to their size.

Given the equivalent expressions oldRoot and newRoot the root of oldRoot is newRoot, if oldRoot has root representative of subsingletons, try to push the equality proof between their root representatives to the todo list, or update the root representative to newRoot.

Equations
  • One or more equations did not get rendered due to their size.

Get all lambda expressions in the equivalence class of e and append to r.

e must be the root of its equivalence class.

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.propagateBeta (fn : Lean.Expr) (revArgs lambdas : Array Lean.Expr) (newLambdaApps : Array Lean.Expr := #[]) :

Remove fn and expressions whose type isn't def-eq to fn's type out from lambdas, return the remaining lambdas applied to the reversed arguments.

Equations
  • One or more equations did not get rendered due to their size.

Given lhs, rhs, and header := "my header:", Trace my header: lhs = rhs.

Equations
  • One or more equations did not get rendered due to their size.

Trace the state of AC module.

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.insertEraseROcc (arg : Lean.Expr) (lhs : ACApps) (inLHS isInsert : Bool) :

Insert or erase lhs to the occurrences of arg on an equality in acR.

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.insertEraseROccs (e lhs : ACApps) (inLHS isInsert : Bool) :

Insert or erase lhs to the occurrences of arguments of e on an equality in acR.

Equations
@[inline]

Insert lhs to the occurrences of arguments of e on an equality in acR.

Equations
@[inline]

Erase lhs to the occurrences of arguments of e on an equality in acR.

Equations
@[inline]

Insert lhs to the occurrences on an equality in acR corresponding to the equality lhs := rhs.

Equations
@[inline]

Erase lhs to the occurrences on an equality in acR corresponding to the equality lhs := rhs.

Equations
@[inline]

Insert lhs to the occurrences of arguments of e on the right hand side of an equality in acR.

Equations
@[inline]

Erase lhs to the occurrences of arguments of e on the right hand side of an equality in acR.

Equations

Try to simplify the right hand sides of equalities in acR by H : lhs = rhs.

Equations
  • One or more equations did not get rendered due to their size.

Try to simplify the left hand sides of equalities in acR by H : lhs = rhs.

Equations
  • One or more equations did not get rendered due to their size.

Given ra := a*r sb := b*s ts := t*s tr := t*r tsEqa : t*s = a trEqb : t*r = b, return a proof for ra = sb.

We use a*b to denote an AC application. That is, (a*b)*(c*a) is the term a*a*b*c.

Equations

Given tsEqa : ts = a, for each equality trEqb : tr = b in acR where the intersection t of ts and tr is nonempty, let ts = t*s and tr := t*r, add a new equality r*a = s*b.

Equations

Process the tasks in the acTodo field.

Equations
  • One or more equations did not get rendered due to their size.

Given AC variables e₁ and e₂ which are in the same equivalence class, add the proof of e₁ = e₂ to the AC module.

Equations
  • One or more equations did not get rendered due to their size.

If the root expression of e is AC variable, add equality to AC module. If not, register the AC variable to the root entry.

Equations
  • One or more equations did not get rendered due to their size.

If e isn't an AC variable, set e as an new AC variable.

Equations
  • One or more equations did not get rendered due to their size.

If e is of the form op e₁ e₂ where op is an associative and commutative binary operator, return the canonical form of op.

Equations

Given e := op₁ (op₂ a₁ a₂) (op₃ a₃ a₄) where opₙs are canonicalized to op, internalize aₙs as AC variables and return (op (op a₁ a₂) (op a₃ a₄), args ++ #[a₁, a₂, a₃, a₄]).

Internalize e so that the AC module can deal with the given expression.

If the expression does not contain an AC operator, or the parent expression is already processed by internalizeAC, this operation does nothing.

Equations
  • One or more equations did not get rendered due to their size.

The specialized internalizeCore for applications or literals.

Internalize e so that the congruence closure can deal with the given expression. Don't forget to process the tasks in the todo field later.

Propagate equality from a and b to a ↔ b.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a and b to a ∧ b.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a and b to a ∨ b.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a to ¬a.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a and b to a → b.

Propagate equality from p, a and b to if p then a else b.

Equations

Propagate equality from a and b to disprove a = b.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from subexpressions of e to e.

This method is invoked during internalization and eagerly apply basic equivalences for term e Examples:

  • If e := cast H e', then it merges the equivalence classes of cast H e' and e'

In principle, we could mark theorems such as cast_eq as simplification rules, but this created problems with the builtin support for cast-introduction in the ematching module in Lean 3. TODO: check if this is now possible in Lean 4.

Eagerly merging the equivalence classes is also more efficient.

If e is a subsingleton element, push the equality proof between e and its canonical form to the todo list or register e as the canonical form of itself.

partial def Mathlib.Tactic.CC.CCM.mkEntry (e : Lean.Expr) (interpreted : Bool) :

Add an new entry for e to the congruence closure.

Can we propagate equality from subexpressions of e to e?

Equations

Remove parents of e from the congruence table and the symm congruence table, and append parents to propagate equality, to parentsToPropagate. Returns the new value of parentsToPropagate.

Equations
  • One or more equations did not get rendered due to their size.
partial def Mathlib.Tactic.CC.CCM.invertTrans (e : Lean.Expr) (newFlipped : Bool := false) (newTarget : Option Lean.Expr := none) (newProof : Option EntryExpr := none) :

The fields target and proof in e's entry are encoding a transitivity proof Let e.rootTarget and e.rootProof denote these fields.

e = e.rootTarget            := e.rootProof
_ = e.rootTarget.rootTarget := e.rootTarget.rootProof
 ...
_ = e.root                  := ...

The transitivity proof eventually reaches the root of the equivalence class. This method "inverts" the proof. That is, the target goes from e.root to e after we execute it.

Traverse the root's equivalence class, and for each function application, collect the function's equivalence class root.

Equations
  • One or more equations did not get rendered due to their size.

Reinsert parents of e to the congruence table and the symm congruence table.

Together with removeParents, this allows modifying parents of an expression.

Equations
  • One or more equations did not get rendered due to their size.

Check for integrity of the CCStructure.

Equations

For each fnRoot in fnRoots traverse its parents, and look for a parent prefix that is in the same equivalence class of the given lambdas.

remark All expressions in lambdas are in the same equivalence class

Equations
  • One or more equations did not get rendered due to their size.

Given c a constructor application, if p is a projection application (not .proj _ _ _, but .app (.const projName _) _) such that major premise is equal to c, then propagate new equality.

Example: if p is of the form b.fst, c is of the form (x, y), and b = c, we add the equality (x, y).fst = x

Equations
  • One or more equations did not get rendered due to their size.

Given a new equality e₁ = e₂, where e₁ and e₂ are constructor applications. Implement the following implications:

c a₁ ... aₙ = c b₁ ... bₙ => a₁ = b₁, ..., aₙ = bₙ

c₁ ... = c₂ ... => False

where c, c₁ and c₂ are constructors

Equations
  • One or more equations did not get rendered due to their size.

Given an injective theorem val : type, whose type is the form of a₁ = a₂ ∧ HEq b₁ b₂ ∧ .., destruct val and push equality proofs to the todo list.

Derive contradiction if we can get equality between different values.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a ∧ b = True to a = True and b = True.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from a ∨ b = False to a = False and b = False.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from ¬a to a.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from (a = b) = True to a = b.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from ¬∃ x, p x to ∀ x, ¬p x.

Equations
  • One or more equations did not get rendered due to their size.

Propagate equality from e to subexpressions of e.

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.addEqvStep (e₁ e₂ : Lean.Expr) (H : EntryExpr) (heqProof : Bool) :

Performs one step in the process when the new equation is added.

Here, H contains the proof that e₁ = e₂ (if heqProof is false) or HEq e₁ e₂ (if heqProof is true).

Equations
  • One or more equations did not get rendered due to their size.
def Mathlib.Tactic.CC.CCM.addEqvStep.go (e₁ e₂ : Lean.Expr) (n₁ n₂ r₁ r₂ : Entry) (flipped : Bool) (H : EntryExpr) (heqProof : Bool) :

The auxiliary definition for addEqvStep to flip the input.

Equations
  • One or more equations did not get rendered due to their size.

Process the tasks in the todo field.

Equations
  • One or more equations did not get rendered due to their size.

Internalize e so that the congruence closure can deal with the given expression.

Equations
def Mathlib.Tactic.CC.CCM.addEqvCore (lhs rhs H : Lean.Expr) (heqProof : Bool) :

Add H : lhs = rhs or H : HEq lhs rhs to the congruence closure. Don't forget to internalize lhs and rhs beforehand.

Equations

Add proof : type to the congruence closure.