Commit 2024-11-14 16:12 71e045c8
View on Github →chore(Data/Matrix): split Basic.lean
into Defs.lean
and Mul.lean
(#18972)
This is based on noticing that the definition of Matrix
imports Algebra
.
Defs.lean
contains the definition of theMatrix
type and its module structureMul.lean
contains vector-and-matrix multiplication operatorsBasic.lean
still contains bundled versions of the operations defined above, and a few lemmas that didn't fit anywhere else.