From 2e8185730690dc45453bc63cb94405b1fb0f736a Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 27 Dec 2023 16:13:58 +0100 Subject: [PATCH] Fix unused variable. --- test/mlpp_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mlpp_tests.cpp b/test/mlpp_tests.cpp index 3d25070..4fc8b43 100644 --- a/test/mlpp_tests.cpp +++ b/test/mlpp_tests.cpp @@ -388,7 +388,7 @@ void MLPPTests::test_multivariate_linear_regression_newton_raphson(bool ui) { MLPPCost mlpp_cost; - int rmse = (int)mlpp_cost.rmsev(ds->get_output(), res); + //int rmse = (int)mlpp_cost.rmsev(ds->get_output(), res); //Lose the bottom X bits (This should allow for 2^X difference.) //rmse = rmse >> 15;