chiark / gitweb /
name tweak
authorstevenj <stevenj@alum.mit.edu>
Tue, 29 Jul 2008 17:48:20 +0000 (13:48 -0400)
committerstevenj <stevenj@alum.mit.edu>
Tue, 29 Jul 2008 17:48:20 +0000 (13:48 -0400)
darcs-hash:20080729174820-c8de0-183125f530d054805da4f7a92eb45a57b58ba18b.gz

api/nlopt.c
api/nlopt_minimize.3
octave/NLOPT_LD_LBFGS.m

index 6ad36f38cb9ba8811ec60c9c436ccb69e14fbc70..71570bdfe118cb6ac6d4f55e1cbcf290a394dfb7 100644 (file)
@@ -63,7 +63,7 @@ static const char nlopt_algorithm_names[NLOPT_NUM_ALGORITHMS][256] = {
 #else
      "original NON-FREE L-BFGS code by Nocedal et al. (NOT COMPILED)",
 #endif
-     "Low-storage BFGS (LBFGS) (local, derivative-based)",
+     "Limited-memory BFGS (L-BFGS) (local, derivative-based)",
      "Principal-axis, praxis (local, no-derivative)",
      "Limited-memory variable-metric, rank 1 (local, derivative-based)",
      "Limited-memory variable-metric, rank 2 (local, derivative-based)",
index 22f795f374e2dac6881a5c20bd6e9c80274421c6..0e6631c89a7a9773f7d4e0b5795a8a02bfb95624 100644 (file)
@@ -251,8 +251,8 @@ optimization, although bound constraints are supported too (via a
 potentially inefficient method).
 .TP
 .B NLOPT_LD_LBFGS
-Local (L) gradient-based (D) optimization using the low-storage BFGS
-(LBFGS) algorithm.  (The objective function must supply the
+Local (L) gradient-based (D) optimization using the limited-memory BFGS
+(L-BFGS) algorithm.  (The objective function must supply the
 gradient.)  Unconstrained optimization is supported in addition to
 simple bound constraints (see above).  Based on an implementation by
 Luksan et al.
index 7a81af33c1af6648c63c7482350ed351887eb7b8..a926f7bdf193c5b08633bd3ed9aec8470bec368b 100644 (file)
@@ -1,4 +1,4 @@
-% NLOPT_LD_LBFGS: Low-storage BFGS (LBFGS) (local, derivative-based)
+% NLOPT_LD_LBFGS: Limited-memory BFGS (L-BFGS) (local, derivative-based)
 %
 % See nlopt_minimize for more information.
 function val = NLOPT_LD_LBFGS