JuliaMath / JuliaMath/Polynomials.jl
Support BigFloat Polynomials
- Dominant language
- Julia
- Stars
- 320
- Forks
- 80
- Avg merge
- 8h 46m
- Merged PRs (30d)
- 3
Description
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 (https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl/pull/71#issuecomment-743928205). 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...
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.