diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-09-05 16:17:32 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-09-05 16:17:32 +0000 |
commit | 07139e38b8d6baadc30443c7f20551908b3db491 (patch) | |
tree | ec236eee44736f8fa00de30e3de07422bf91b67d /methods/powell | |
parent | f6773e55b1025d13647a84702833cc8dc3f08d88 (diff) | |
download | opt-utilities-07139e38b8d6baadc30443c7f20551908b3db491.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@60 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'methods/powell')
-rw-r--r-- | methods/powell/powell_method.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/methods/powell/powell_method.hpp b/methods/powell/powell_method.hpp index 6256b5b..1562fdf 100644 --- a/methods/powell/powell_method.hpp +++ b/methods/powell/powell_method.hpp @@ -207,6 +207,11 @@ namespace opt_utilities opt_eq(start_point,p); } + array1d_type do_get_start_point()const + { + return start_point; + } + void do_set_lower_limit(const array1d_type& p) {} @@ -218,6 +223,11 @@ namespace opt_utilities threshold=t; } + rT do_get_precision()const + { + return threshold; + } + void do_set_optimizer(optimizer<rT,pT>& o) { p_optimizer=&o; |