diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-11-08 16:23:38 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-11-08 16:23:38 +0000 |
commit | 411fedef9da82eb1c155f17a2babab671123c577 (patch) | |
tree | 9f4a7a7710e02fdb67e69fc154a098da87344636 /core/fitter.hpp | |
parent | da0171cf51100155677bbf353f5802e15714fa72 (diff) | |
download | opt-utilities-411fedef9da82eb1c155f17a2babab671123c577.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@92 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'core/fitter.hpp')
-rw-r--r-- | core/fitter.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fitter.hpp b/core/fitter.hpp index bea0d5c..5265385 100644 --- a/core/fitter.hpp +++ b/core/fitter.hpp @@ -936,9 +936,9 @@ namespace opt_utilities /**
\return the description of the model
*/
- Tstr to_string()const
+ Tstr get_information()const
{
- return do_to_string();
+ return do_get_information();
}
@@ -982,7 +982,7 @@ namespace opt_utilities virtual Ty do_eval(const Tx& x,const Tp& p)=0;
private:
- virtual Tstr do_to_string()const
+ virtual Tstr do_get_information()const
{
return Tstr();
}
|