Skip to content

Commit 787e14b

Browse files
committed
Fix indentation.
1 parent 58d5e02 commit 787e14b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mlpack/methods/block_krylov_svd/randomized_block_krylov_svd_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ inline void RandomizedBlockKrylovSVD::Apply(const InMatType& data,
6060
{
6161
// The block size cannot be greater than the number of points in the
6262
// dataset or the dimensionality of the dataset.
63-
blockSize = std::min((size_t) data.n_rows,
64-
std::min((size_t) data.n_cols, rank + 10));
63+
blockSize = std::min((size_t) data.n_rows, std::min((size_t) data.n_cols,
64+
rank + 10));
6565
}
6666

6767
// Random block initialization.

0 commit comments

Comments
 (0)