From c67ef06f2f3062455e985152f52be89f1071c36f Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 28 Jan 2016 11:25:25 +0100 Subject: ManipulationHandler: changed numeric range type to match arma::uvec. --- manipulationhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manipulationhandler.cpp') diff --git a/manipulationhandler.cpp b/manipulationhandler.cpp index bb0e043..b298860 100644 --- a/manipulationhandler.cpp +++ b/manipulationhandler.cpp @@ -15,7 +15,7 @@ ManipulationHandler::ManipulationHandler(const arma::mat &X, , m_rpIndices(X.n_rows - cpIndices.n_elem) , m_technique(TECHNIQUE_LAMP) { - NumericRange range(0, m_X.n_rows); + NumericRange range(0, m_X.n_rows); std::set_symmetric_difference(range.cbegin(), range.cend(), m_cpIndices.cbegin(), m_cpIndices.cend(), m_rpIndices.begin()); } -- cgit v1.2.3