aboutsummaryrefslogtreecommitdiffstats
path: root/methods/powell
diff options
context:
space:
mode:
Diffstat (limited to 'methods/powell')
-rw-r--r--methods/powell/powell_method.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/methods/powell/powell_method.hpp b/methods/powell/powell_method.hpp
index ee5adeb..1e135b0 100644
--- a/methods/powell/powell_method.hpp
+++ b/methods/powell/powell_method.hpp
@@ -34,7 +34,10 @@ namespace opt_utilities
mutable bool bstop;
//typedef blitz::Array<rT,2> array2d_type;
-
+ const char* do_get_type_name()const
+ {
+ return "powell method";
+ }
private:
array1d_type start_point;
array1d_type end_point;