aboutsummaryrefslogtreecommitdiff
path: root/effectivenessobserver.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-01-29 10:11:27 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2016-01-29 10:11:27 +0100
commit990a1eb8aa57aecddf0b8d0d8c230875a7421a10 (patch)
tree4bbf9ae20d5e542500102027864fcf47c6ca7231 /effectivenessobserver.h
parentcdd910e41b9f5200aebf4ce38246ac93177f7e5b (diff)
Removed unused old files.
Diffstat (limited to 'effectivenessobserver.h')
-rw-r--r--effectivenessobserver.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/effectivenessobserver.h b/effectivenessobserver.h
deleted file mode 100644
index 80ee368..0000000
--- a/effectivenessobserver.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef EFFECTIVEINTERACTIONENFORCER_H
-#define EFFECTIVEINTERACTIONENFORCER_H
-
-#include <QObject>
-#include <QSet>
-#include <armadillo>
-
-class EffectiveInteractionEnforcer : public QObject
-{
- Q_OBJECT
-public:
- EffectiveInteractionEnforcer(const arma::uvec &sampleIndices);
-
-signals:
- void effectivenessChanged(const arma::vec &effectiveness);
-
-public slots:
- void setSelection(const QSet<int> &selection);
- void setMeasureDifference(const arma::vec &measure);
-
-private:
- arma::uvec m_sampleIndices;
- arma::mat m_effectiveness;
- arma::vec m_measure;
- QSet<int> m_selection;
-};
-
-#endif // EFFECTIVEINTERACTIONENFORCER_H