Skip to content

Commit f32a93b

Browse files
committed
Reduce maximum array length to avoid excessive run times
1 parent 584fa55 commit f32a93b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/linspace/benchmark/benchmark.assign.generic_complex.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function main() {
8989
var i;
9090

9191
min = 1; // 10^min
92-
max = 6; // 10^max
92+
max = 5; // 10^max
9393

9494
for ( i = min; i <= max; i++ ) {
9595
len = pow( 10, i );

lib/node_modules/@stdlib/array/linspace/benchmark/benchmark.generic_complex.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function main() {
9292
var i;
9393

9494
min = 1; // 10^min
95-
max = 6; // 10^max
95+
max = 5; // 10^max
9696

9797
for ( i = min; i <= max; i++ ) {
9898
len = pow( 10, i );

0 commit comments

Comments
 (0)