Skip to content

Commit 2cff239

Browse files
chore: improve precision
--- 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: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - 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 e59929c commit 2cff239

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/special/boxcox/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ bench( pkg, function benchmark( b ) {
3535
var r;
3636
var i;
3737

38-
x = uniform( 100, 1, 11 );
39-
y = uniform( 100, 1, 11 );
38+
x = uniform( 100, 1.0, 11.0 );
39+
y = uniform( 100, 1.0, 11.0 );
4040

4141
b.tic();
4242
for ( i = 0; i < b.iterations; i++ ) {

lib/node_modules/@stdlib/math/base/special/boxcox/benchmark/benchmark.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4444
var r;
4545
var i;
4646

47-
x = uniform( 100, 1, 11 );
48-
y = uniform( 100, 1, 11 );
47+
x = uniform( 100, 1.0, 11.0 );
48+
y = uniform( 100, 1.0, 11.0 );
4949

5050
b.tic();
5151
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)