aboutsummaryrefslogtreecommitdiff
path: root/effectivenessobserver.h
diff options
context:
space:
mode:
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