Skip to content

Commit 7f63ca2

Browse files
committed
bench: reduce maximum array size
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0783b86 commit 7f63ca2

File tree

176 files changed

+176
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+176
-176
lines changed

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.1d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function main() {
106106
var k;
107107

108108
min = 1; // 10^min
109-
max = 6; // 10^max
109+
max = 5; // 10^max
110110

111111
for ( k = 0; k < ORDERS.length; k++ ) {
112112
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.2d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function main() {
108108
var k;
109109

110110
min = 1; // 10^min
111-
max = 6; // 10^max
111+
max = 5; // 10^max
112112

113113
for ( k = 0; k < ORDERS.length; k++ ) {
114114
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.3d.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function main() {
109109
var k;
110110

111111
min = 1; // 10^min
112-
max = 6; // 10^max
112+
max = 5; // 10^max
113113

114114
for ( k = 0; k < ORDERS.length; k++ ) {
115115
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.3d.broadcast.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function main() {
125125
var k;
126126

127127
min = 1; // 10^min
128-
max = 6; // 10^max
128+
max = 5; // 10^max
129129

130130
for ( k = 0; k < ORDERS.length; k++ ) {
131131
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.3d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function main() {
108108
var k;
109109

110110
min = 1; // 10^min
111-
max = 6; // 10^max
111+
max = 5; // 10^max
112112

113113
for ( k = 0; k < ORDERS.length; k++ ) {
114114
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.3d.same_shape.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function main() {
124124
var k;
125125

126126
min = 1; // 10^min
127-
max = 6; // 10^max
127+
max = 5; // 10^max
128128

129129
for ( k = 0; k < ORDERS.length; k++ ) {
130130
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.4d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function main() {
107107
var k;
108108

109109
min = 1; // 10^min
110-
max = 6; // 10^max
110+
max = 5; // 10^max
111111

112112
for ( k = 0; k < ORDERS.length; k++ ) {
113113
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/arcsine/benchmark/benchmark.5d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function main() {
107107
var k;
108108

109109
min = 1; // 10^min
110-
max = 6; // 10^max
110+
max = 5; // 10^max
111111

112112
for ( k = 0; k < ORDERS.length; k++ ) {
113113
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/beta/benchmark/benchmark.1d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function main() {
106106
var k;
107107

108108
min = 1; // 10^min
109-
max = 6; // 10^max
109+
max = 5; // 10^max
110110

111111
for ( k = 0; k < ORDERS.length; k++ ) {
112112
ord = ORDERS[ k ];

lib/node_modules/@stdlib/random/beta/benchmark/benchmark.2d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function main() {
108108
var k;
109109

110110
min = 1; // 10^min
111-
max = 6; // 10^max
111+
max = 5; // 10^max
112112

113113
for ( k = 0; k < ORDERS.length; k++ ) {
114114
ord = ORDERS[ k ];

0 commit comments

Comments
 (0)