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
Great package. I am currently using the TypedPolynomials package for the construction of polynomials, as it is the most performant in my use case. However, a straight froward conversion to a StaticPolynomials.Polynomial fails.
using TypedPolynomials
import StaticPolynomials
@polyvar x y z
p =3*z^2+2*y*x
ps = StaticPolynomials.Polynomial(p)
yields
MethodError: no method matching StaticPolynomials.Polynomial(::Vector{Float64}, ::Matrix{Int64}, ::Tuple{Symbol, Symbol, Symbol}, ::Nothing, ::Nothing)
Closest candidates are:
StaticPolynomials.Polynomial(::Vector, ::Matrix{<:Integer}, !Matched::Vector{Symbol}, ::Union{Nothing, Matrix{<:Integer}}, ::Any) at ~/.julia/packages/StaticPolynomials/TgQjK/src/polynomial.jl:63
StaticPolynomials.Polynomial(::Vector{T}, !Matched::StaticPolynomials.SExponents, ::Any, ::Union{Nothing, StaticPolynomials.SExponents}, ::Any, !Matched::Vector{Int64}) where T at ~/.julia/packages/StaticPolynomials/TgQjK/src/polynomial.jl:26
StaticPolynomials.Polynomial(::Vector, ::Matrix{<:Integer}, !Matched::Vector{Symbol}, ::Union{Nothing, Matrix{<:Integer}}) at ~/.julia/packages/StaticPolynomials/TgQjK/src/polynomial.jl:63
The issue seems to be that the Polynomial constructor expects Vector{Symbol} as third argument, but MultivariatePolynomials.variables returns a tuple in this case. That said I found the following workaround:
using TypedPolynomials, MultivariatePolynomials
import StaticPolynomials
@polyvar x y z
p =3*z^2+2*y*x
ps = StaticPolynomials.Polynomial(p, Variable[variables(p)...], nothing)
What could be a permanent solution, which does not require this workaround?
The text was updated successfully, but these errors were encountered:
Great package. I am currently using the
TypedPolynomials
package for the construction of polynomials, as it is the most performant in my use case. However, a straight froward conversion to aStaticPolynomials.Polynomial
fails.yields
The issue seems to be that the
Polynomial
constructor expectsVector{Symbol}
as third argument, butMultivariatePolynomials.variables
returns a tuple in this case. That said I found the following workaround:What could be a permanent solution, which does not require this workaround?
The text was updated successfully, but these errors were encountered: