You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a vector of monomials for many variables. It fails if the number of variables exceeds a single digit (>9) with the error ArgumentError: Variables must be in order
MWE
using MultivariatePolynomials # v0.3.12using TypedPolynomials # v0.2.8@polyvar x[1:10]
monomials(x, 1:2) # ERROR: ArgumentError: Variables must be in ordermonomials(x[10:-1:9], 1:2) # This unexpectedly works
I'm using Julia 1.5.3
The text was updated successfully, but these errors were encountered:
blegat
transferred this issue from JuliaAlgebra/MultivariatePolynomials.jl
Mar 24, 2021
I'm trying to create a vector of monomials for many variables. It fails if the number of variables exceeds a single digit (>9) with the error
ArgumentError: Variables must be in order
MWE
I'm using Julia 1.5.3
The text was updated successfully, but these errors were encountered: