- refactored

- constify
This commit is contained in:
2024-01-22 12:26:03 +01:00
parent d99cf5ee4c
commit 938368f1fa
14 changed files with 102 additions and 99 deletions
+4 -4
View File
@@ -73,8 +73,8 @@ public:
ScopedPointer<DrawComponent> DrawContextTrain;
arma::mat getTraining() const;
arma::mat getReconst() const;
void trainRedraw(const arma::mat& vc);
void reconstRedraw(const arma::mat& vc);
void trainRedraw(const arma::mat& vc) const;
void reconstRedraw(const arma::mat& vc) const;
private:
//[UserVariables] -- You can add your own custom variables in this section.
@@ -84,8 +84,8 @@ private:
ScopedPointer<ToggleButton> m_toggleEnable;
ScopedPointer<TextButton> m_buttonCopyH2C;
void onUpPass(const arma::mat& v) override;
void onDownPass(const arma::mat& h) override;
void onUpPass(const arma::mat& v) const override;
void onDownPass(const arma::mat& h) const override;
DeepStack &m_stack;
size_t m_currWeightIndexToDraw;