comparison main/optim/inst/optim_problems.m @ 9930:d30cfca46e8a octave-forge

optim: upgrade license to GPLv3+ and mention on DESCRIPTION the other package licenses
author carandraug
date Fri, 30 Mar 2012 15:14:48 +0000
parents 55c73f24f0ee
children fba8cdd5f9ad
comparison
equal deleted inserted replaced
9929:df50d0ae107f 9930:d30cfca46e8a
1 %% Copyright (C) 2010 Olaf Till <olaf.till@uni-jena.de>
2 %% Copyright (C) 2007 Paul Kienzle (sort-based lookup in ODE solver) 1 %% Copyright (C) 2007 Paul Kienzle (sort-based lookup in ODE solver)
3 %% Copyright (C) 2009 Thomas Treichl <thomas.treichl@gmx.net> 2 %% Copyright (C) 2009 Thomas Treichl <thomas.treichl@gmx.net>
4 %% (ode23 code) 3 %% Copyright (C) 2010 Olaf Till <olaf.till@uni-jena.de>
5 %% 4 %%
6 %% This program is free software; you can redistribute it and/or modify 5 %% This program is free software; you can redistribute it and/or modify it under
7 %% it under the terms of the GNU General Public License as published by 6 %% the terms of the GNU General Public License as published by the Free Software
8 %% the Free Software Foundation; either version 3 of the License, or (at 7 %% Foundation; either version 3 of the License, or (at your option) any later
9 %% your option) any later version. 8 %% version.
10 %% 9 %%
11 %% This program is distributed in the hope that it will be useful, but 10 %% This program is distributed in the hope that it will be useful, but WITHOUT
12 %% WITHOUT ANY WARRANTY; without even the implied warranty of 11 %% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 %% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 %% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 %% General Public License for more details. 13 %% details.
15 %% 14 %%
16 %% You should have received a copy of the GNU General Public License 15 %% You should have received a copy of the GNU General Public License along with
17 %% along with this program; If not, see <http://www.gnu.org/licenses/>. 16 %% this program; if not, see <http://www.gnu.org/licenses/>.
17
18 %% Problems for testing optimizers. Documentation is in the code.
18 19
19 function ret = optim_problems () 20 function ret = optim_problems ()
20
21 %% Problems for testing optimizers. Documentation is in the code.
22 21
23 %% As little external code as possible is called. This leads to some 22 %% As little external code as possible is called. This leads to some
24 %% duplication of external code. The advantages are that thus these 23 %% duplication of external code. The advantages are that thus these
25 %% problems do not change with evolving external code, and that 24 %% problems do not change with evolving external code, and that
26 %% optimization results in Octave can be compared with those in Matlab 25 %% optimization results in Octave can be compared with those in Matlab