DynamicPolynomials.jl icon indicating copy to clipboard operation
DynamicPolynomials.jl copied to clipboard

Storing the list of all exponents in the same vector

Open blegat opened this issue 5 months ago • 0 comments

It could be a performance win to change this Vector{Vector{Int}} into Vector{Int}: https://github.com/JuliaAlgebra/DynamicPolynomials.jl/blob/a0e6d3e00b9824c06d1263f88671fdbf023fff2d/src/monomial_vector.jl#L6 We could also use a Matrix{Int} but then adding exponents in the list might be more tricky.

blegat avatar Aug 18 '25 09:08 blegat