- refactored
- constify
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user