aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-04-25 17:55:36 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-04-25 17:55:36 +0000
commit91a9dcce63179ea5b2279b032e9ffa85a29bb479 (patch)
tree5e4e03ac85a1cb199b9649ae2b9030ca492f8d33
parent5607bd639f2eae77bd041bb73191766deb38a0bc (diff)
downloadopt-utilities-91a9dcce63179ea5b2279b032e9ffa85a29bb479.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@31 ed2142bd-67ad-457f-ba7c-d818d4011675
-rw-r--r--core/fitter.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fitter.hpp b/core/fitter.hpp
index c4bcc51..6e2914f 100644
--- a/core/fitter.hpp
+++ b/core/fitter.hpp
@@ -694,7 +694,7 @@ namespace opt_utilities
return *(this->p_data_set);
}
- model<Ty,Tx,Tp,Tstr>& model()
+ model<Ty,Tx,Tp,Tstr>& get_model()
{
if(p_model==0)
{
@@ -703,7 +703,7 @@ namespace opt_utilities
return *(this->p_model);
}
- statistic<Ty,Tx,Tp,Ts,Tstr>& statistic()
+ statistic<Ty,Tx,Tp,Ts,Tstr>& get_statistic()
{
if(p_statistic==0)
{
@@ -712,7 +712,7 @@ namespace opt_utilities
return *(this->p_statistic);
}
- opt_method<Ts,Tp>& method()
+ opt_method<Ts,Tp>& get_method()
{
return optengine.method();
}