Skip to content

Commit 2217847

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 67c2882 commit 2217847

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/lapack/base/dlaswp/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function main() {
116116
j = 1;
117117
while ( j <= N ) {
118118
f = createBenchmark( ord, N, j );
119-
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, (N*N) ), f );
119+
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, N*N ), f );
120120
j *= 2;
121121
}
122122
}

lib/node_modules/@stdlib/lapack/base/dlaswp/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function main() {
126126
j = 1;
127127
while ( j <= N ) {
128128
f = createBenchmark( ord, N, j );
129-
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, (N*N) ), f );
129+
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, N*N ), f );
130130
j *= 2;
131131
}
132132
}

0 commit comments

Comments
 (0)