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
In #297 support for roots and fitting using BigFloat polynomials was added just by adding a dependency on GenericLinearAlgebra. Unfortunately, this little change causes downstream breakage (JuliaLinearAlgebra/GenericLinearAlgebra.jl#71 (comment)). Until that is resolved, removing this dependency seems prudent.
The support can be had just by the user loading that package; the addition of the dependency just made life easier and more predictable.
p = Polynomial(big.([1.0,2,3,4]))
roots(p) # error
using GenericLinearAlgebra
roots(p) # all fine now...
The text was updated successfully, but these errors were encountered:
In #297 support for roots and fitting using BigFloat polynomials was added just by adding a dependency on
GenericLinearAlgebra
. Unfortunately, this little change causes downstream breakage (JuliaLinearAlgebra/GenericLinearAlgebra.jl#71 (comment)). Until that is resolved, removing this dependency seems prudent.The support can be had just by the user loading that package; the addition of the dependency just made life easier and more predictable.
The text was updated successfully, but these errors were encountered: