Skip to content

Commit 3650503

Browse files
committed
fix: missing parenthesis in sollya command
Signed-off-by: krishna2803 <[email protected]>
1 parent 01f0425 commit 3650503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/cbrtf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ constexpr double CBRT2[3] = {1.0, 0x1.428a2f98d728bp0, 0x1.965fea53d6e3dp0};
2525
// Degree-7 polynomials approximation of ((1 + x)^(1/3) - 1)/x for 0 <= x <= 1
2626
// generated by Sollya with:
2727
// > for i from 0 to 15 do {
28-
// P = fpminimax((1 + x)^(1/3) - 1)/x, 6, [|D...|], [i/16, (i + 1)/16]);
28+
// P = fpminimax(((1 + x)^(1/3) - 1)/x, 6, [|D...|], [i/16, (i + 1)/16]);
2929
// print("{", coeff(P, 0), ",", coeff(P, 1), ",", coeff(P, 2), ",",
3030
// coeff(P, 3), ",", coeff(P, 4), ",", coeff(P, 5), ",",
3131
// coeff(P, 6), "},");

0 commit comments

Comments
 (0)