Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 21, 2024
1 parent d8b6612 commit f73f459
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions base/at2d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (posi
shape = [ 5, 5 ];
x = filled2dBy( shape, discreteUniform( 0, 10 ) );

i0 = incrspace( shape[0], shape[0]+10, 1 );
i0 = incrspace( 0, shape[0]+10, 1 );
i1 = incrspace( shape[1], shape[1]+10, 1 );
indices = nCartesianProduct( i0, i1 );

Expand All @@ -128,7 +128,7 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (nega
shape = [ 5, 5 ];
x = filled2dBy( shape, discreteUniform( 0, 10 ) );

i0 = incrspace( -shape[0]-10, -shape[0], 1 );
i0 = incrspace( -shape[0]-10, 0, 1 );
i1 = incrspace( -shape[1]-10, -shape[1], 1 );
indices = nCartesianProduct( i0, i1 );

Expand Down
8 changes: 4 additions & 4 deletions base/at3d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (posi
shape = [ 3, 3, 3 ];
x = filled3dBy( shape, discreteUniform( 0, 10 ) );

i0 = incrspace( shape[0], shape[0]+10, 1 );
i1 = incrspace( shape[1], shape[1]+10, 1 );
i0 = incrspace( 0, shape[0]+10, 1 );
i1 = incrspace( 0, shape[1]+10, 1 );
i2 = incrspace( shape[2], shape[2]+10, 1 );
indices = nCartesianProduct( i0, i1, i2 );

Expand All @@ -135,8 +135,8 @@ tape( 'the function returns `undefined` if provided an out-of-bounds index (nega
shape = [ 3, 3, 3 ];
x = filled3dBy( shape, discreteUniform( 0, 10 ) );

i0 = incrspace( -shape[0]-10, -shape[0], 1 );
i1 = incrspace( -shape[1]-10, -shape[1], 1 );
i0 = incrspace( -shape[0]-10, 0, 1 );
i1 = incrspace( -shape[1]-10, 0, 1 );
i2 = incrspace( -shape[2]-10, -shape[2], 1 );
indices = nCartesianProduct( i0, i1, i2 );

Expand Down

0 comments on commit f73f459

Please sign in to comment.