Open GoogleCodeExporter opened 9 years ago
I guess `if Li >= L[-1] or Li < start` would be better for the break condition.
Original comment by smi...@gmail.com
on 22 Feb 2012 at 4:01
I don't see much need to change this function, as it's really only intended
internally for numerical Newton iteration where the starting precision is much
higher than 1.
For algebraic Newton iteration, where the starting precision might be 1, it is
better to use a more exact version, precisely doing ceiling divisions by n.
The proposed change would not really be correct anyway as it should start with
something like 1, 2, 3, ...
Original comment by fredrik....@gmail.com
on 23 Feb 2012 at 4:03
OK. And it only hangs if you happen to start at 1. Since it wasn't a
private function it caught my attention.
Original comment by smi...@gmail.com
on 23 Feb 2012 at 6:43
Original issue reported on code.google.com by
smi...@gmail.com
on 22 Feb 2012 at 3:51