diff options
Diffstat (limited to 'interactionhandler.cpp')
-rw-r--r-- | interactionhandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/interactionhandler.cpp b/interactionhandler.cpp index b79fdd8..2eb55bb 100644 --- a/interactionhandler.cpp +++ b/interactionhandler.cpp @@ -15,7 +15,11 @@ void InteractionHandler::setSubsample(const arma::mat &Ys) { switch (m_technique) { case TECHNIQUE_PLMP: + mp::plmp(m_X, m_sampleIndices, Ys, m_Y); + break; case TECHNIQUE_LSP: + // mp::lsp(m_X, m_sampleIndices, Ys, m_Y); + break; case TECHNIQUE_LAMP: mp::lamp(m_X, m_sampleIndices, Ys, m_Y); break; |