v0.6.0
Arblib v0.6.0
This release adds a breaking change for the constructor of polynomials and series for two-tuples. In the previous version ArbPoly((a, b))
would create the constant polynomial with the value Arb((a, b))
. In the new version it will instead create the polynomial a + b * x
. The old behavior can be reconstructed with ArbPoly(((a, b),))
. See #142 for more details.
Merged pull requests:
- Add deepcopy method for Arb structs (#141) (@Joel-Dahne)
- Polynomial performance improvements (#142) (@Joel-Dahne)