Skip to content

Commit 45b66ad

Browse files
chore: update manifest file
1 parent 52b85a0 commit 45b66ad

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/node_modules/@stdlib/math/base/special/atanh/manifest.json

+9
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
"@stdlib/math/base/napi/unary",
4040
"@stdlib/math/base/special/log1p",
4141
"@stdlib/math/base/assert/is-nan",
42+
"@stdlib/constants/float64/high_word_abs_mask",
43+
"@stdlib/number/float64/base/set_high_word",
44+
"@stdlib/number/float64/base/to_words",
4245
"@stdlib/constants/float64/pinf",
4346
"@stdlib/constants/float64/ninf"
4447
]
@@ -56,6 +59,9 @@
5659
"dependencies": [
5760
"@stdlib/math/base/special/log1p",
5861
"@stdlib/math/base/assert/is-nan",
62+
"@stdlib/constants/float64/high_word_abs_mask",
63+
"@stdlib/number/float64/base/set_high_word",
64+
"@stdlib/number/float64/base/to_words",
5965
"@stdlib/constants/float64/pinf",
6066
"@stdlib/constants/float64/ninf"
6167
]
@@ -73,6 +79,9 @@
7379
"dependencies": [
7480
"@stdlib/math/base/special/log1p",
7581
"@stdlib/math/base/assert/is-nan",
82+
"@stdlib/constants/float64/high_word_abs_mask",
83+
"@stdlib/number/float64/base/set_high_word",
84+
"@stdlib/number/float64/base/to_words",
7685
"@stdlib/constants/float64/pinf",
7786
"@stdlib/constants/float64/ninf"
7887
]

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

-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ double stdlib_base_atanh( const double x ) {
120120
if( ahx < HIGH_BIASED_EXP_NEG_1 ) {
121121
t = x + x;
122122
t = 0.5 * stdlib_base_log1p( t + ( t * x / ( one - x ) ) );
123-
124123
} else {
125124
t = 0.5 * stdlib_base_log1p( ( x + x ) / ( one - x ) );
126125
}

0 commit comments

Comments
 (0)