Skip to content

Commit d4779ac

Browse files
committed
Remove outdated comment
1 parent 8ee56d7 commit d4779ac

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

ext/bigdecimal/bigdecimal.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5049,7 +5049,6 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
50495049

50505050
if (word_a > word_r || word_b + word_c - 2 >= word_r) goto space_error;
50515051

5052-
// Newton-Raphson division requires multiplication to be faster than O(n^2)
50535052
if (word_c >= NEWTON_RAPHSON_DIVISION_THRESHOLD && word_b >= NEWTON_RAPHSON_DIVISION_THRESHOLD) {
50545053
VpDivdNewton(c, r, a, b);
50555054
goto Exit;

0 commit comments

Comments
 (0)