From cc866c8ea17c5bdfe82e19d6ca833e51bee6778f Mon Sep 17 00:00:00 2001 From: Sourabh Varshney Date: Tue, 27 Mar 2018 13:56:52 +0530 Subject: [PATCH] Style fix --- src/mlpack/methods/ann/ffn.hpp | 4 ++-- src/mlpack/methods/ann/rnn.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mlpack/methods/ann/ffn.hpp b/src/mlpack/methods/ann/ffn.hpp index ed0c5b8269..d551e643c5 100644 --- a/src/mlpack/methods/ann/ffn.hpp +++ b/src/mlpack/methods/ann/ffn.hpp @@ -226,12 +226,12 @@ class FFN arma::mat& Parameters() { return parameter; } //! Get the matrix of responses to the input data points. - const arma::mat& Responses() const { return responses; } + const arma::mat& Responses() const { return responses; } //! Modify the matrix of responses to the input data points. arma::mat& Responses() { return responses; } //! Get the matrix of data points (predictors). - const arma::mat& Predictors() const { return predictors; } + const arma::mat& Predictors() const { return predictors; } //! Modify the matrix of data points (predictors). arma::mat& Predictors() { return predictors; } diff --git a/src/mlpack/methods/ann/rnn.hpp b/src/mlpack/methods/ann/rnn.hpp index 44f06b627a..bd4b4bbf47 100644 --- a/src/mlpack/methods/ann/rnn.hpp +++ b/src/mlpack/methods/ann/rnn.hpp @@ -242,12 +242,12 @@ class RNN size_t& Rho() { return rho; } //! Get the matrix of responses to the input data points. - const arma::cube& Responses() const { return responses; } + const arma::cube& Responses() const { return responses; } //! Modify the matrix of responses to the input data points. arma::cube& Responses() { return responses; } //! Get the matrix of data points (predictors). - const arma::cube& Predictors() const { return predictors; } + const arma::cube& Predictors() const { return predictors; } //! Modify the matrix of data points (predictors). arma::cube& Predictors() { return predictors; }