From: stevenj Date: Fri, 7 Sep 2007 01:54:06 +0000 (-0400) Subject: added missing .m files X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1ce8b83b710f86b0c727907c5f023b67ec788c86;p=nlopt.git added missing .m files darcs-hash:20070907015406-c8de0-4bf04c827b12db3b8d30c01ea8af75acca8e3c02.gz --- diff --git a/octave/Makefile.am b/octave/Makefile.am index c05a0d7..2fd66bf 100644 --- a/octave/Makefile.am +++ b/octave/Makefile.am @@ -1,6 +1,6 @@ AM_CPPFLAGS = -I$(top_srcdir)/api -MFILES = NLOPT_GN_DIRECT.m NLOPT_GN_DIRECT_L.m NLOPT_GN_DIRECT_L_RAND.m NLOPT_GN_DIRECT_NOSCAL.m NLOPT_GN_DIRECT_L_NOSCAL.m NLOPT_GN_DIRECT_L_RAND_NOSCAL.m NLOPT_GN_ORIG_DIRECT.m NLOPT_GN_ORIG_DIRECT_L.m NLOPT_LN_SUBPLEX.m NLOPT_GD_STOGO.m NLOPT_GD_STOGO_RAND.m NLOPT_LD_LBFGS.m NLOPT_LN_PRAXIS.m NLOPT_LD_VAR1.m NLOPT_LD_VAR2.m +MFILES = NLOPT_GN_DIRECT.m NLOPT_GN_DIRECT_L.m NLOPT_GN_DIRECT_L_RAND.m NLOPT_GN_DIRECT_NOSCAL.m NLOPT_GN_DIRECT_L_NOSCAL.m NLOPT_GN_DIRECT_L_RAND_NOSCAL.m NLOPT_GN_ORIG_DIRECT.m NLOPT_GN_ORIG_DIRECT_L.m NLOPT_LN_SUBPLEX.m NLOPT_GD_STOGO.m NLOPT_GD_STOGO_RAND.m NLOPT_LD_LBFGS.m NLOPT_LN_PRAXIS.m NLOPT_LD_VAR1.m NLOPT_LD_VAR2.m NLOPT_LD_TNEWTON.m NLOPT_LD_TNEWTON_RESTART.m NLOPT_LD_TNEWTON_PRECOND.m NLOPT_LD_TNEWTON_PRECOND_RESTART.m NLOPT_GN_CRS2_LM.m ####################################################################### octdir = $(OCT_INSTALL_DIR) diff --git a/octave/NLOPT_GN_CRS2_LM.m b/octave/NLOPT_GN_CRS2_LM.m new file mode 100644 index 0000000..bde02d1 --- /dev/null +++ b/octave/NLOPT_GN_CRS2_LM.m @@ -0,0 +1,5 @@ +% NLOPT_GN_CRS2_LM: Controlled random search (CRS2) with local mutation (global, no-derivative) +% +% See nlopt_minimize for more information. +function val = NLOPT_GN_CRS2_LM + val = 19; diff --git a/octave/NLOPT_LD_TNEWTON.m b/octave/NLOPT_LD_TNEWTON.m new file mode 100644 index 0000000..60fb2d7 --- /dev/null +++ b/octave/NLOPT_LD_TNEWTON.m @@ -0,0 +1,5 @@ +% NLOPT_LD_TNEWTON: Truncated Newton (local, derivative-based) +% +% See nlopt_minimize for more information. +function val = NLOPT_LD_TNEWTON + val = 15; diff --git a/octave/NLOPT_LD_TNEWTON_PRECOND.m b/octave/NLOPT_LD_TNEWTON_PRECOND.m new file mode 100644 index 0000000..ab42479 --- /dev/null +++ b/octave/NLOPT_LD_TNEWTON_PRECOND.m @@ -0,0 +1,5 @@ +% NLOPT_LD_TNEWTON_PRECOND: Preconditioned truncated Newton (local, derivative-based) +% +% See nlopt_minimize for more information. +function val = NLOPT_LD_TNEWTON_PRECOND + val = 17; diff --git a/octave/NLOPT_LD_TNEWTON_PRECOND_RESTART.m b/octave/NLOPT_LD_TNEWTON_PRECOND_RESTART.m new file mode 100644 index 0000000..d1e42f7 --- /dev/null +++ b/octave/NLOPT_LD_TNEWTON_PRECOND_RESTART.m @@ -0,0 +1,5 @@ +% NLOPT_LD_TNEWTON_PRECOND_RESTART: Preconditioned truncated Newton with restarting (local, derivative-based) +% +% See nlopt_minimize for more information. +function val = NLOPT_LD_TNEWTON_PRECOND_RESTART + val = 18; diff --git a/octave/NLOPT_LD_TNEWTON_RESTART.m b/octave/NLOPT_LD_TNEWTON_RESTART.m new file mode 100644 index 0000000..7ef9d75 --- /dev/null +++ b/octave/NLOPT_LD_TNEWTON_RESTART.m @@ -0,0 +1,5 @@ +% NLOPT_LD_TNEWTON_RESTART: Truncated Newton with restarting (local, derivative-based) +% +% See nlopt_minimize for more information. +function val = NLOPT_LD_TNEWTON_RESTART + val = 16;