368lemma aggCoeff_append (xs ys : List MicroMove) (pair : ℕ) (prim : Primitive) : 369 aggCoeff (xs ++ ys) pair prim = aggCoeff xs pair prim + aggCoeff ys pair prim := by
proof body
Term-mode proof.
370 classical 371 unfold aggCoeff 372 simp only [List.filter_append, List.map_append, List.sum_append] 373 374/-- Aggregation over a flat-mapped list of row moves. -/
used by (1)
From the project-wide theorem graph. These declarations reference this one in their body.