diff --git a/src/mlpack/methods/ann/convolution_rules/svd_convolution.hpp b/src/mlpack/methods/ann/convolution_rules/svd_convolution.hpp index 1a4fc283cf..db478d542e 100644 --- a/src/mlpack/methods/ann/convolution_rules/svd_convolution.hpp +++ b/src/mlpack/methods/ann/convolution_rules/svd_convolution.hpp @@ -70,8 +70,7 @@ class SVDConvolution // Rank approximation using the singular values calculated with singular // value decomposition of dense filter matrix. - const size_t rank = sum(s > (s.n_elem * arma::max(s) * - arma::datum::eps)); + const size_t rank = sum(s > (s.n_elem * arma::max(s) * arma::datum::eps)); // Test for separability based on the rank of the kernel and take // advantage of the low rank.