Skip to content

Commit 8415ab6

Browse files
updated main.c values
1 parent 9bded14 commit 8415ab6

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ var polyvalP = require( './polyval_p.js' );
4848
* @param {number} hi - upper bound
4949
* @param {number} lo - lower bound
5050
* @param {integer} k - power of 2
51-
* @param {integer} x - power of e
5251
* @returns {number} function value
5352
*/
5453
function expmulti( hi, lo, k ) {

lib/node_modules/@stdlib/math/base/special/expf/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
3939
var truncf = require( '@stdlib/math/base/special/truncf' );
4040
var NINF = require( '@stdlib/constants/float32/ninf' );
4141
var PINF = require( '@stdlib/constants/float32/pinf' );
42-
var absf = require( '@stdlib/math/base/special/absf' );
4342
var expmulti = require( './expmulti.js' );
4443

4544

lib/node_modules/@stdlib/math/base/special/expf/src/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
#include "stdlib/math/base/special/truncf.h"
4040
#include <stdint.h>
4141

42-
static const float LN2_HI = 0.69314718;
42+
static const float LN2_HI = 6.9314575195e-01;
4343
static const float LN2_LO = 1.4286067653e-06;
44-
static const float LOG2_E = 1.4426950216;
44+
static const float LOG2_E = 1.4426950216e+00;
4545
static const float half[ 2 ] = { 0.5, -0.5 };
46-
static const float EXP_OVERFLOW = 88.721679688;
47-
static const float EXP_UNDERFLOW = -103.97208405;
46+
static const float EXP_OVERFLOW = 8.8721679688e+01;
47+
static const float EXP_UNDERFLOW = -1.0397208405e+02;
4848
static const float NEARZERO = 1.0 / ( 1 << 14 );
4949
static const float NEG_NEARZERO = -1.0 / ( 1 << 14 );
5050

0 commit comments

Comments
 (0)