aboutsummaryrefslogtreecommitdiff
path: root/npdistortion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'npdistortion.cpp')
-rw-r--r--npdistortion.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/npdistortion.cpp b/npdistortion.cpp
deleted file mode 100644
index 1994c74..0000000
--- a/npdistortion.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "npdistortion.h"
-
-#include "mp.h"
-
-NPDistortion::NPDistortion(int k)
- : m_k(k)
-{
-}
-
-arma::vec NPDistortion::measure(const arma::mat &distA, const arma::mat &distB)
-{
- return mp::neighborhoodPreservation(distA, distB, m_k);
-}