aboutsummaryrefslogtreecommitdiffstats
path: root/methods/lbfgs
diff options
context:
space:
mode:
Diffstat (limited to 'methods/lbfgs')
-rw-r--r--methods/lbfgs/lbfgs_method.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/methods/lbfgs/lbfgs_method.hpp b/methods/lbfgs/lbfgs_method.hpp
index 18e1814..a719f1d 100644
--- a/methods/lbfgs/lbfgs_method.hpp
+++ b/methods/lbfgs/lbfgs_method.hpp
@@ -85,7 +85,10 @@ namespace opt_utilities
return p_fo->eval(x);
}
-
+ const char* do_get_type_name()const
+ {
+ return "large scale bfgs";
+ }
public:
lbfgs_method()
:threshold(1e-4)