aboutsummaryrefslogtreecommitdiffstats
path: root/methods
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-10-10 16:33:18 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-10-10 16:33:18 +0000
commit3fcb4f104a8b81937f93ef4b298dd51e3c1eec94 (patch)
treed3189de86b86e8db595da9b60fa5d1bdfb58934a /methods
parentb5f6f5a869e2ce9db6ca29c843369b6518e7c4d7 (diff)
downloadopt-utilities-3fcb4f104a8b81937f93ef4b298dd51e3c1eec94.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@78 ed2142bd-67ad-457f-ba7c-d818d4011675
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),