aboutsummaryrefslogtreecommitdiffstats
path: root/methods
diff options
context:
space:
mode:
Diffstat (limited to 'methods')
-rw-r--r--methods/powell/linmin.hpp2
-rw-r--r--methods/powell/powell_method.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/methods/powell/linmin.hpp b/methods/powell/linmin.hpp
index bde12c6..962b052 100644
--- a/methods/powell/linmin.hpp
+++ b/methods/powell/linmin.hpp
@@ -16,7 +16,7 @@ namespace opt_utilities
const func_obj<rT,pT>* pfoo;
func_adaptor(){}
func_adaptor(const func_adaptor&)
- :p1(),xi1(),pfoo(0)
+ :func_obj<rT,rT>(),p1(),xi1(),pfoo(0)
{}
public:
diff --git a/methods/powell/powell_method.hpp b/methods/powell/powell_method.hpp
index 1562fdf..0ec095c 100644
--- a/methods/powell/powell_method.hpp
+++ b/methods/powell/powell_method.hpp
@@ -175,7 +175,7 @@ namespace opt_utilities
};
powell_method(const powell_method<rT,pT>& rhs)
- :p_fo(rhs.p_fo),p_optimizer(rhs.p_optimizer),
+ :opt_method<rT,pT>(rhs),p_fo(rhs.p_fo),p_optimizer(rhs.p_optimizer),
start_point(rhs.start_point),
end_point(rhs.end_point),
ncom(rhs.ncom),