From d1c7b019ff7f23f54e2388bfb7d7108ef3f6c19f Mon Sep 17 00:00:00 2001 From: Wu Lin Date: Mon, 17 Mar 2014 21:02:59 -0400 Subject: [PATCH] Revert "change the private data member in LaplacianInferenceMethod" This reverts commit 1fa15175c10b53a5e4066035e139fd8358d70343. --- src/shogun/machine/gp/LaplacianInferenceMethod.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shogun/machine/gp/LaplacianInferenceMethod.h b/src/shogun/machine/gp/LaplacianInferenceMethod.h index b91daf10a5a..7212cb28c43 100644 --- a/src/shogun/machine/gp/LaplacianInferenceMethod.h +++ b/src/shogun/machine/gp/LaplacianInferenceMethod.h @@ -283,6 +283,8 @@ class CLaplacianInferenceMethod: public CInferenceMethod private: void init(); + +protected: /** amount of tolerance for Newton's iterations */ float64_t m_tolerance; @@ -295,7 +297,6 @@ class CLaplacianInferenceMethod: public CInferenceMethod /** max iterations for Brent's minimization method */ float64_t m_opt_max; -protected: /** mean vector of the approximation to the posterior */ SGVector m_mu;