Skip to content

Commit a184883

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

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function main() {
121121
j = 1;
122122
while ( j <= N ) {
123123
f = createBenchmark( ord, N, j );
124-
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, (N*N) ), f );
124+
bench( format( '%s::square_matrix:order=%s,nrows=%d,size=%d', pkg, ord, j, N*N ), f );
125125
j *= 2;
126126
}
127127
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function main() {
131131
j = 1;
132132
while ( j <= N ) {
133133
f = createBenchmark( ord, N, j );
134-
bench( format( '%s::square_matrix:ndarray:order=%s,nrows=%d,size=%d', pkg, ord, j, (N*N) ), f );
134+
bench( format( '%s::square_matrix:ndarray:order=%s,nrows=%d,size=%d', pkg, ord, j, N*N ), f );
135135
j *= 2;
136136
}
137137
}

0 commit comments

Comments
 (0)