Commit 2026-09-02 14:25 631b214f
View on Github →refactor(Algebra/MvPolynomial): delete coeff (#41427)
... without a deprecation because we want dot notation to resolve to AddMonoidAlgebra.coeff.
For migration, replace bare MvPolynomial.coeffs with AddMonoidAlgebra.coeff. Dot notation .coeff will resolve to AddMonoidAlgebra.coeff without further change. MvPolynomial.coeff m p corresponds to AddMonoidAlgebra.coeff p m, so you will need to swap arguments. Note further that AddMonoidAlgebra.coeff p is bundled as a Finsupp while MvPolynomial.coeff is a bare function.