mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
math.big: bump newton_division_limit to 1_000_000 (workaround issue #23806)
This commit is contained in:
parent
c9bec82033
commit
270941a6bd
@ -245,7 +245,7 @@ fn divide_array_by_digit(operand_a []u32, divisor u32, mut quotient []u32, mut r
|
|||||||
shrink_tail_zeros(mut remainder)
|
shrink_tail_zeros(mut remainder)
|
||||||
}
|
}
|
||||||
|
|
||||||
const newton_division_limit = 10_000
|
const newton_division_limit = 1_000_000
|
||||||
|
|
||||||
@[inline]
|
@[inline]
|
||||||
fn divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {
|
fn divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user