aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-02-09 21:36:34 -0200
committerSamuel Fadel <samuelfadel@gmail.com>2016-02-09 21:36:34 -0200
commit5c26dd04dd171112d14bfb24db96cf286566e19b (patch)
tree62a2dd9370a54968bf543344153ef69a85561840 /manipulationhandler.h
parent886bdd0fa43a2fcdeca306648b643b623af99f88 (diff)
Slightly reworked rewinding; added values rewinding.
Needs a solution to the problem of which values must be displayed and/or interpolated. Currently, whenever the user rewinds, the current error measure is displayed, regardless of what was being displayed before. This will probably be trivial to solve once we have a nice way of changing the current measure. * Also changed all OpenMP-powered for loops to use signed integers, requirements of OMP2.x (which is what MSVC supports currently) * The above change comes with a new header for utility functions
Diffstat (limited to 'manipulationhandler.h')
-rw-r--r--manipulationhandler.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/manipulationhandler.h b/manipulationhandler.h
index 1e17446..e099da8 100644
--- a/manipulationhandler.h
+++ b/manipulationhandler.h
@@ -24,6 +24,9 @@ signals:
void cpChanged(const arma::mat &cpY) const;
void rpChanged(const arma::mat &rpY) const;
void mapChanged(const arma::mat &Y) const;
+ void cpRewound(const arma::mat &cpY) const;
+ void rpRewound(const arma::mat &rpY) const;
+ void mapRewound(const arma::mat &Y) const;
public slots:
void setCP(const arma::mat &Ys);