Skip to content

Commit bcaba12

Browse files
committed
Auto-generated commit
1 parent 73b948f commit bcaba12

6 files changed

Lines changed: 0 additions & 32 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9693,7 +9693,6 @@ A total of 29 people contributed to this release. Thank you to the following con
96939693

96949694
<details>
96959695

9696-
- [`9211c88`](https://github.com/stdlib-js/stdlib/commit/9211c88ad8ecd436a2fb5311eb00ace0ac8d6f9d) - **test:** add tests for IEEE 754-2019 compliance [(#6561)](https://github.com/stdlib-js/stdlib/pull/6561) _(by Karan Anand, stdlib-bot)_
96979696
- [`d9ad02c`](https://github.com/stdlib-js/stdlib/commit/d9ad02ca1c902ca787d9e9135160871379e40829) - **test:** add tests for IEEE 754-2019 compliance [(#6557)](https://github.com/stdlib-js/stdlib/pull/6557) _(by Karan Anand)_
96989697
- [`5c0b04d`](https://github.com/stdlib-js/stdlib/commit/5c0b04d1e4d0e03a7364541658bada5f20f8e50c) - **chore:** address commit comments for commit bb378ff (issue #6499) [(#6565)](https://github.com/stdlib-js/stdlib/pull/6565) _(by PrathamBhamare)_
96999698
- [`d0c1c2b`](https://github.com/stdlib-js/stdlib/commit/d0c1c2b9a307016b894d7fa3d500c98558bbe197) - **test:** add tests for IEEE 754-2019 compliance [(#6558)](https://github.com/stdlib-js/stdlib/pull/6558) _(by Karan Anand)_

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,6 @@ For more information on the project, filing bug reports and feature requests, an
139139

140140
---
141141

142-
## License
143-
144-
See [LICENSE][stdlib-license].
145-
146-
147142
## Copyright
148143

149144
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -190,8 +185,6 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
190185
[esm-readme]: https://github.com/stdlib-js/math/blob/esm/README.md
191186
[branches-url]: https://github.com/stdlib-js/math/blob/main/branches.md
192187

193-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math/main/LICENSE
194-
195188
<!-- <toc-links> -->
196189

197190
[@stdlib/math/array]: https://github.com/stdlib-js/math/tree/main/array

base/special/acos/test/test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ var isnan = require( './../../../../base/assert/is-nan' );
2525
var randu = require( '@stdlib/random/base/randu' );
2626
var abs = require( './../../../../base/special/abs' );
2727
var EPS = require( '@stdlib/constants/float64/eps' );
28-
var isPositiveZero = require( '@stdlib/assert/is-positive-zero' );
2928
var acos = require( './../lib' );
3029

3130

@@ -141,8 +140,3 @@ tape( 'the function returns `NaN` if provided a value greater than `+1`', functi
141140
}
142141
t.end();
143142
});
144-
145-
tape( 'the function returns `0` if provided `1`', function test( t ) {
146-
t.equal( isPositiveZero( acos( 1.0 ) ), true, 'returns expected value' );
147-
t.end();
148-
});

base/special/acos/test/test.native.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ var randu = require( '@stdlib/random/base/randu' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
2828
var abs = require( './../../../../base/special/abs' );
2929
var EPS = require( '@stdlib/constants/float64/eps' );
30-
var isPositiveZero = require( '@stdlib/assert/is-positive-zero' );
3130

3231

3332
// FIXTURES //
@@ -150,8 +149,3 @@ tape( 'the function returns `NaN` if provided a value greater than `+1`', opts,
150149
}
151150
t.end();
152151
});
153-
154-
tape( 'the function returns `0` if provided `1`', opts, function test( t ) {
155-
t.equal( isPositiveZero( acos( 1.0 ) ), true, 'returns expected value' );
156-
t.end();
157-
});

base/special/acosh/test/test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ var randu = require( '@stdlib/random/base/randu' );
2626
var EPS = require( '@stdlib/constants/float64/eps' );
2727
var PINF = require( '@stdlib/constants/float64/pinf' );
2828
var abs = require( './../../../../base/special/abs' );
29-
var isPositiveZero = require( '@stdlib/assert/is-positive-zero' );
3029
var acosh = require( './../lib' );
3130

3231

@@ -159,11 +158,6 @@ tape( 'the function returns `NaN` if provided value less than `1`', function tes
159158
t.end();
160159
});
161160

162-
tape( 'the function returns `0` if provided `1`', function test( t ) {
163-
t.equal( isPositiveZero( acosh( 1.0 ) ), true, 'returns expected value' );
164-
t.end();
165-
});
166-
167161
tape( 'the function returns `+infinity` if provided `+infinity`', function test( t ) {
168162
var v = acosh( PINF );
169163
t.equal( v, PINF, 'returns expected value' );

base/special/acosh/test/test.native.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ var randu = require( '@stdlib/random/base/randu' );
2727
var PINF = require( '@stdlib/constants/float64/pinf' );
2828
var EPS = require( '@stdlib/constants/float64/eps' );
2929
var abs = require( './../../../../base/special/abs' );
30-
var isPositiveZero = require( '@stdlib/assert/is-positive-zero' );
3130
var tryRequire = require( '@stdlib/utils/try-require' );
3231

3332

@@ -168,11 +167,6 @@ tape( 'the function returns `NaN` if provided value less than `1`', opts, functi
168167
t.end();
169168
});
170169

171-
tape( 'the function returns `0` if provided `1`', opts, function test( t ) {
172-
t.equal( isPositiveZero( acosh( 1.0 ) ), true, 'returns expected value' );
173-
t.end();
174-
});
175-
176170
tape( 'the function returns `+infinity` if provided `+infinity`', opts, function test( t ) {
177171
var v = acosh( PINF );
178172
t.equal( v, PINF, 'returns expected value' );

0 commit comments

Comments
 (0)