Skip to content

Commit 270941a

Browse files
committed
math.big: bump newton_division_limit to 1_000_000 (workaround issue #23806)
1 parent c9bec82 commit 270941a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vlib/math/big/array_ops.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ fn divide_array_by_digit(operand_a []u32, divisor u32, mut quotient []u32, mut r
245245
shrink_tail_zeros(mut remainder)
246246
}
247247

248-
const newton_division_limit = 10_000
248+
const newton_division_limit = 1_000_000
249249

250250
@[inline]
251251
fn divide_array_by_array(operand_a []u32, operand_b []u32, mut quotient []u32, mut remainder []u32) {

0 commit comments

Comments
 (0)