From b9cd19eeb8ce0a641d9a3bcd6f4b057070cfb537 Mon Sep 17 00:00:00 2001 From: mercierc <54903400+mercierc@users.noreply.github.com> Date: Tue, 23 Jun 2020 17:39:44 +0200 Subject: [PATCH] Update src/mlpack/tests/bayesian_linear_regression_test.cpp Co-authored-by: Ryan Curtin --- src/mlpack/tests/bayesian_linear_regression_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mlpack/tests/bayesian_linear_regression_test.cpp b/src/mlpack/tests/bayesian_linear_regression_test.cpp index ec764510d4..25ef5c4385 100644 --- a/src/mlpack/tests/bayesian_linear_regression_test.cpp +++ b/src/mlpack/tests/bayesian_linear_regression_test.cpp @@ -160,10 +160,10 @@ BOOST_AUTO_TEST_CASE(PredictiveUncertainties) // Check the solution is equal to the classical ridge. BOOST_AUTO_TEST_CASE(EqualtoRidge) { - arma::mat matX; - arma::rowvec y, blrPred, ridgePred; + arma::mat matX; + arma::rowvec y, blrPred, ridgePred; - for (size_t trial = 0; trial < 3; ++trial) + for (size_t trial = 0; trial < 3; ++trial) { GenerateProblem(matX, y, 100, 10, 1);