JuliaAlgebra / DynamicPolynomials.jl

Multivariate polynomials implementation of commutative and non-commutative variables
Other
60 stars 21 forks source link

Close issue #62 #63

Closed tweisser closed 4 years ago

tweisser commented 4 years ago

When generating a polynomial q = zero(p), using mutable operations on p had an impact on q. This is should be fixed now. In particular

@polyvar x y
p = x^2 + x + 1
q = rem(p, [x^2-y])

throws an error without this fix.

tweisser commented 4 years ago

Also fixes a typo in an error message.