diff options
| -rw-r--r-- | vmodels/gauss1d.hpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/vmodels/gauss1d.hpp b/vmodels/gauss1d.hpp index e94ede6..85d5576 100644 --- a/vmodels/gauss1d.hpp +++ b/vmodels/gauss1d.hpp @@ -8,6 +8,7 @@  #define GAUSS_MODEL_H_  #define OPT_HEADER  #include <core/fitter.hpp> +#include <core/pre_estimater.hpp>  #include <cmath>  #include <misc/optvec.hpp>  #include <core/pre_estimater.hpp> @@ -16,7 +17,8 @@ namespace opt_utilities  {    template <typename T>    class gauss1d -    :public model<optvec<T>,optvec<T>,optvec<T>,std::string> +    :public model<optvec<T>,optvec<T>,optvec<T>,std::string>, +     public pre_estimatable<optvec<T>,optvec<T>,optvec<T>,std::string>      ,public pre_estimatable<optvec<T>,optvec<T>,optvec<T>,std::string>    {    private: | 
