mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
math.big: bump newton_division_limit to 1_000_000 (workaround issue #23806)
This commit is contained in:
parent
c9bec82033
commit
270941a6bd
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ fn divide_array_by_digit(operand_a []u32, divisor u32, mut quotient []u32, mut r
|
|||
shrink_tail_zeros(mut remainder)
|
||||
}
|
||||
|
||||
const newton_division_limit = 10_000
|
||||
const newton_division_limit = 1_000_000
|
||||
|
||||
@[inline]
|
||||
fn divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue