Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support BigFloat Polynomials #300

Open
jverzani opened this issue Dec 13, 2020 · 0 comments
Open

Support BigFloat Polynomials #300

jverzani opened this issue Dec 13, 2020 · 0 comments

Comments

@jverzani
Copy link
Member

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...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant