Re: RFR: 8077587: BigInteger Roots [v20]

2025-07-14 Thread Hans Boehm
On Fri, Jul 11, 2025 at 11:44 AM fabioromano1 wrote: > > On Fri, 11 Jul 2025 18:07:31 GMT, fabioromano1 wrote: > > >> This PR implements nth root computation for BigIntegers using Newton method. > > > > fabioromano1 has updated the pull request incrementally with one additional commit since the l

Re: RFR: 8077587: BigInteger Roots [v20]

2025-07-11 Thread fabioromano1
On Fri, 11 Jul 2025 18:07:31 GMT, fabioromano1 wrote: >> This PR implements nth root computation for BigIntegers using Newton method. > > fabioromano1 has updated the pull request incrementally with one additional > commit since the last revision: > > Avoid to discard fraction bits in the ini

Re: RFR: 8077587: BigInteger Roots [v20]

2025-07-11 Thread fabioromano1
> This PR implements nth root computation for BigIntegers using Newton method. fabioromano1 has updated the pull request incrementally with one additional commit since the last revision: Avoid to discard fraction bits in the initial estimate - Changes: - all: https://git.openjd

Re: RFR: 8077587: BigInteger Roots [v20]

2025-04-21 Thread fabioromano1
> This PR implements nth root computation for `BigInteger`s using Newton method > and optimizes `BigInteger.pow(int)` method. > [Here is a proof of convergence of the recurrence > used.](https://github.com/user-attachments/files/19785045/nth_root_newton_proof_integers.pdf) fabioromano1 has updat