aboutsummaryrefslogtreecommitdiffstats
path: root/models/lin1d.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'models/lin1d.hpp')
-rw-r--r--models/lin1d.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/models/lin1d.hpp b/models/lin1d.hpp
index a3359ce..390daa7 100644
--- a/models/lin1d.hpp
+++ b/models/lin1d.hpp
@@ -9,6 +9,7 @@
#define LINEAR_MODEL_H_
#define OPT_HEADER
#include <core/fitter.hpp>
+#include <pre_estimater/pre_estimater.hpp>
#include <cmath>
namespace opt_utilities
@@ -16,6 +17,7 @@ namespace opt_utilities
template <typename T>
class lin1d
:public model<T,T,std::vector<T>,std::string>
+ ,public pre_estimatable<T,T,std::vector<T>,std::string>
{
private:
model<T,T,std::vector<T> >* do_clone()const