You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/OptimizationLBFGSB/src/OptimizationLBFGSB.jl
+29-17Lines changed: 29 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,12 @@
1
-
using Optimization.SciMLBase, LBFGSB
1
+
module OptimizationLBFGSB
2
+
3
+
using Optimization
4
+
using DocStringExtensions
5
+
import LBFGSB as LBFGSBJL
6
+
using OptimizationBase.SciMLBase: OptimizationStats, OptimizationFunction
7
+
using OptimizationBase: ReturnCode
8
+
using OptimizationBase.LinearAlgebra: norm
9
+
using Optimization: deduce_retcode
2
10
3
11
"""
4
12
$(TYPEDEF)
@@ -12,7 +20,7 @@ References
12
20
- C. Zhu, R. H. Byrd and J. Nocedal. L-BFGS-B: Algorithm 778: L-BFGS-B, FORTRAN routines for large scale bound constrained optimization (1997), ACM Transactions on Mathematical Software, Vol 23, Num. 4, pp. 550 - 560.
13
21
- J.L. Morales and J. Nocedal. L-BFGS-B: Remark on Algorithm 778: L-BFGS-B, FORTRAN routines for large scale bound constrained optimization (2011), to appear in ACM Transactions on Mathematical Software.
0 commit comments