diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-05-03 17:15:35 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-05-03 17:15:35 +0000 |
commit | ff3d217744dc6341e965c8a3f6b3037cd2b2cf3b (patch) | |
tree | 48552b393c8012779913f81d043c757fb1910bc2 /methods/lbfgs | |
parent | 12868a2786ec1346d5a0a43c68b772515eb9a163 (diff) | |
download | opt-utilities-ff3d217744dc6341e965c8a3f6b3037cd2b2cf3b.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@193 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'methods/lbfgs')
-rw-r--r-- | methods/lbfgs/lbfgs_method.hpp | 5 |
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) |