Skip to content

Commit 959a2d9

Browse files
committed
Remove linebreak
1 parent 66e6314 commit 959a2d9

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/gammaincinv/lib

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/math/base/special/gammaincinv/lib/compute.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,7 @@ function compute( a, p, q ) {
192192
CK[ 1 ] = 1.0 / ap1;
193193
CK[ 2 ] = HALF * ( ( 3.0*a ) + 5.0 ) / ( ap12*ap2 );
194194
CK[ 3 ] = ONEO3 * ( 31.0 + (8.0*a2) + (33.0*a) ) / ( ap13*ap2*ap3 );
195-
CK[ 4 ] = ONEO24 * ( 2888.0 + (1179.0*a3) + (125.0*a4) + (3971.0*a2) +
196-
(5661.0*a) ) / ( ap14*ap22*ap3*( a+4.0 ) );
195+
CK[ 4 ] = ONEO24 * ( 2888.0 + (1179.0*a3) + (125.0*a4) + (3971.0*a2) + (5661.0*a) ) / ( ap14*ap22*ap3*( a+4.0 ) ); // eslint-disable-line max-len
197196
x0 = r * evalpoly( CK, r );
198197
lgama = gammaln( a );
199198
k = 1;

0 commit comments

Comments
 (0)