diff options
Diffstat (limited to 'core')
-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();
}
|