From 4be86901b99e27d77db2cdb9859e0f7d199402db Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 1 Oct 2013 03:47:21 +0000 Subject: [PATCH] No! The spaces were WRONG! --- src/mlpack/methods/cf/cf.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mlpack/methods/cf/cf.hpp b/src/mlpack/methods/cf/cf.hpp index 8ab9e472ef..1755cc9c06 100644 --- a/src/mlpack/methods/cf/cf.hpp +++ b/src/mlpack/methods/cf/cf.hpp @@ -210,12 +210,12 @@ class CF * @param neighbor Index of item being inserted as a recommendation. * @param value Value of recommendation. */ - void InsertNeighbor(const size_t queryIndex, - const size_t pos, - const size_t neighbor, - const double value, - arma::Mat& recommendations, - arma::mat& values) const; + void InsertNeighbor(const size_t queryIndex, + const size_t pos, + const size_t neighbor, + const double value, + arma::Mat& recommendations, + arma::mat& values) const; }; // class CF