File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
lib/node_modules/@stdlib/math/base/special/riemann-zeta
include/stdlib/math/base/special Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ extern "C" {
2929/**
3030* Evaluates the Riemann zeta function.
3131*/
32- double stdlib_base_zeta ( const double x );
32+ double stdlib_base_zeta ( const double s );
3333
3434#ifdef __cplusplus
3535}
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ var TWO_PI = require( '@stdlib/constants/float64/two-pi' );
4949var SQRT_EPSILON = require ( '@stdlib/constants/float64/sqrt-eps' ) ;
5050var LN_SQRT_TWO_PI = require ( '@stdlib/constants/float64/ln-sqrt-two-pi' ) ;
5151var MAX_SAFE_NTH_FACTORIAL = require ( '@stdlib/constants/float64/max-safe-nth-factorial' ) ;
52+ var FLOAT64_MAX_LN = require ( '@stdlib/constants/float64/max-ln' ) ;
5253var ODD_POSITIVE_INTEGERS = require ( './odd_positive_integers.json' ) ;
5354var EVEN_NONNEGATIVE_INTEGERS = require ( './even_nonnegative_integers.json' ) ;
5455var BERNOULLI = require ( './bernoulli.json' ) ;
@@ -63,7 +64,7 @@ var rateval6 = require( './rational_p6q6.js' );
6364// VARIABLES //
6465
6566var MAX_BERNOULLI_2N = 129 ;
66- var MAX_LN = 709 ; // TODO: consider making external constant
67+ var MAX_LN = floor ( FLOAT64_MAX_LN ) ;
6768var Y1 = 1.2433929443359375 ;
6869var Y3 = 0.6986598968505859375 ;
6970
You can’t perform that action at this time.
0 commit comments