From b7e1060b7cb71b30b91cc65c011b719e255c0a06 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Mon, 1 Jun 2015 18:11:33 -0300 Subject: Minor code changes in main/lamp/forceScheme. --- lamp.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lamp.cpp') diff --git a/lamp.cpp b/lamp.cpp index b7a1027..7d36877 100644 --- a/lamp.cpp +++ b/lamp.cpp @@ -16,7 +16,7 @@ void mp::lamp(const arma::mat &X, const arma::uvec &sampleIndices, const arma::m const arma::mat &Xs = X.rows(sampleIndices); arma::uword sampleSize = sampleIndices.n_elem; - #pragma omp parallel for shared(X, Xs, sampleIndices, Ys, Y) + #pragma omp parallel for shared(X, Xs, Ys, Y) for (arma::uword i = 0; i < X.n_rows; i++) { const arma::rowvec &point = X.row(i); @@ -52,7 +52,6 @@ void mp::lamp(const arma::mat &X, const arma::uvec &sampleIndices, const arma::m arma::svd(U, s, V, At * B); arma::mat M = U.cols(0, 1) * V.t(); - // the projection of point i Y(i, arma::span(0, 1)) = (point - Xtil) * M + Ytil; } } -- cgit v1.2.3