Skip to content

Commit 296b447

Browse files
committed
chore: apply suggestions from review
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f36fdd0 commit 296b447

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: lib/node_modules/@stdlib/math/base/special/rempio2f/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* ## Notice
2020
*
21-
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_rem_pio2.c}. The implementation follows the original, but has been modified for JavaScript.
21+
* The following copyright and license were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_rem_pio2f.c}. The implementation follows the original, but has been modified for JavaScript.
2222
*
2323
* ```text
2424
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.

Diff for: lib/node_modules/@stdlib/math/base/special/rempio2f/test/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ tape( 'for huge positive input values, the function returns the last three binar
235235
var n;
236236
var i;
237237

238-
x = linspace( pow( 2.0, 60 )*PIO2, pow( 2.0, 1020 )*PIO2, 6000 );
238+
x = linspace( pow( 2.0, 60 )*PIO2, pow( 2.0, 125 )*PIO2, 6000 );
239239
y = [ 0.0 ];
240240
for ( i = 0; i < x.length; i++ ) {
241241
x[i] = float64ToFloat32( x[i] );
@@ -253,7 +253,7 @@ tape( 'for huge negative input values, the function returns the last three binar
253253
var n;
254254
var i;
255255

256-
x = linspace( -pow( 2.0, 60 )*PIO2, -pow( 2.0, 1020 )*PIO2, 6000 );
256+
x = linspace( -pow( 2.0, 60 )*PIO2, -pow( 2.0, 125 )*PIO2, 6000 );
257257
y = [ 0.0 ];
258258
for ( i = 0; i < x.length; i++ ) {
259259
x[i] = float64ToFloat32( x[i] );

Diff for: lib/node_modules/@stdlib/math/base/special/rempio2f/test/test.native.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ tape( 'for huge positive input values, the function returns the last three binar
245245
var n;
246246
var i;
247247

248-
x = linspace( pow( 2.0, 60 )*PIO2, pow( 2.0, 1020 )*PIO2, 6000 );
248+
x = linspace( pow( 2.0, 60 )*PIO2, pow( 2.0, 125 )*PIO2, 6000 );
249249
y = new Float64Array( [ 0.0 ] );
250250
for ( i = 0; i < x.length; i++ ) {
251251
x[i] = float64ToFloat32( x[i] );
@@ -263,7 +263,7 @@ tape( 'for huge negative input values, the function returns the last three binar
263263
var n;
264264
var i;
265265

266-
x = linspace( -pow( 2.0, 60 )*PIO2, -pow( 2.0, 1020 )*PIO2, 6000 );
266+
x = linspace( -pow( 2.0, 60 )*PIO2, -pow( 2.0, 125 )*PIO2, 6000 );
267267
y = new Float64Array( [ 0.0 ] );
268268
for ( i = 0; i < x.length; i++ ) {
269269
x[i] = float64ToFloat32( x[i] );

0 commit comments

Comments
 (0)