aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.cpp
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-28 11:25:25 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-28 11:25:25 +0100
commitc67ef06f2f3062455e985152f52be89f1071c36f (patch)
tree238fb6ab4b05be2559f01c162b4394cc9c0ea493 /manipulationhandler.cpp
parentaad000e85e83fd297efec70c187b1d2246c145b3 (diff)
ManipulationHandler: changed numeric range type to match arma::uvec.
Diffstat (limited to 'manipulationhandler.cpp')
-rw-r--r--manipulationhandler.cpp2
1 files changed, 1 insertions, 1 deletions
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<unsigned long long> range(0, m_X.n_rows);
+ NumericRange<arma::uword> range(0, m_X.n_rows);
std::set_symmetric_difference(range.cbegin(), range.cend(),
m_cpIndices.cbegin(), m_cpIndices.cend(), m_rpIndices.begin());
}