chiark / gitweb /
missing .m files
authorstevenj <stevenj@alum.mit.edu>
Mon, 18 Aug 2008 22:40:30 +0000 (18:40 -0400)
committerstevenj <stevenj@alum.mit.edu>
Mon, 18 Aug 2008 22:40:30 +0000 (18:40 -0400)
darcs-hash:20080818224030-c8de0-946323047197a14252c1e3f54f0d63dac85bd3b6.gz

octave/NLOPT_LD_LBFGS_NOCEDAL.m [new file with mode: 0644]
octave/NLOPT_LD_MMA.m [new file with mode: 0644]

diff --git a/octave/NLOPT_LD_LBFGS_NOCEDAL.m b/octave/NLOPT_LD_LBFGS_NOCEDAL.m
new file mode 100644 (file)
index 0000000..b213556
--- /dev/null
@@ -0,0 +1,5 @@
+% NLOPT_LD_LBFGS_NOCEDAL: original NON-FREE L-BFGS code by Nocedal et al. (NOT COMPILED)
+%
+% See nlopt_minimize for more information.
+function val = NLOPT_LD_LBFGS_NOCEDAL
+  val = 11;
diff --git a/octave/NLOPT_LD_MMA.m b/octave/NLOPT_LD_MMA.m
new file mode 100644 (file)
index 0000000..66585ba
--- /dev/null
@@ -0,0 +1,5 @@
+% NLOPT_LD_MMA: Method of Moving Asymptotes (MMA) (local, derivative)
+%
+% See nlopt_minimize for more information.
+function val = NLOPT_LD_MMA
+  val = 25;