chiark / gitweb /
Use trusty
[nlopt.git] / api / optimize.c
2015-05-12 Steven G. Johnsonmore robustness to underflow etc. (fix #36)
2015-04-17 Steven G. Johnsonfix #26
2015-04-17 Steven G. Johnsonadd nlopt_get_errmsg(opt) for more informative error...
2015-04-11 Steven G. JohnsonMerge branch 'master' of https://github.com/stevengj...
2014-09-18 Steven G. Johnsonfix #24
2014-05-20 Steven G. Johnsoncopyright year update for 2014
2014-02-24 Steven G. JohnsonMerge pull request #6 from xantares/pytest
2014-02-20 Steven G. Johnsonfix #13 (CRS for empty dimensions)
2013-08-27 Steven G. Johnsonrm defunct Nocedal code references (but keep NLOPT_LD_L...
2013-02-08 stevenjadded ESCH algorithm
2012-08-08 stevenjmake internal nlopt_opt.work field a void* rather than...
2012-07-20 stevenjversion bump for 2.3
2011-11-28 stevenjfix maximization with preconditioner (passed wrong...
2011-11-26 stevenjlower tolerance for dual optimization in MMA/CCSAQ...
2011-11-23 stevenjdetect null preconditioner when maximizing
2011-11-15 stevenjadded (untested) interface for specifying preconditioners
2011-11-15 stevenjadded CCSAQ algorithm; internal support for preconditio...
2011-05-26 stevenjcopyright year bump
2011-05-26 stevenjuse elimdim in StoGO
2011-03-07 stevenjuse elimdim for praxis, nelder mead, and sbplx
2011-03-03 stevenjelimdim wrappers to handle lb==ub in derivative-free...
2010-11-20 stevenjrename subspace_dim to vector_storage, since not necess...
2010-11-18 stevenjadd get/set subspace dimension for low-storage quasi...
2010-10-28 stevenjfix support for maxtime in Luksan algorithms and ORIG_D...
2010-07-30 stevenjstick to C89 and avoid mixed declarations and code...
2010-07-15 stevenjsupport forced stops in ORIG_DIRECT
2010-07-15 stevenjallow BOBYQA and COBYLA to use unequal initial step...
2010-07-10 stevenjadded slsqp code (compiles, not yet tested)
2010-07-10 stevenjprepare to handle forced-stop in ORIG_DIRECT (not done...
2010-07-06 stevenjfix mma mconstraints
2010-07-01 stevenjadd mconstraint to C API (not yet tested), thanks to...
2010-06-24 stevenjsupport equality constraints in COBYLA (internally...
2010-06-17 stevenjSTDCALL needs to go after return type for MSVC++; thank...
2010-06-16 stevenjfixed MinGW build
2010-06-15 stevenjadd NLOPT_G_MLSL variants that require local_opt to...
2010-06-14 stevenjcopy initial_step (if any) from opt to local_opt
2010-06-14 stevenjNLOPT_AUGLAG, no LN/LD, which requires local-opt algori...
2010-06-14 stevenjC++, STOGO, and nocedal fixes
2010-05-31 stevenjimprove C++ header exceptions, rename NLOPT_FORCE_STOP...
2010-05-28 stevenjuse thread-local storage for Mersenne twister to make...
2010-05-28 stevenjadded nlopt_force_stop termination
2010-05-07 stevenjsupport inequality constraints directly in ORIG_DIRECT
2010-04-06 stevenjwhoops, fix maximize function
2010-04-05 stevenjadd set_max_objective to automate the sign flip for...
2010-04-05 stevenjversion, copyright-year bump
2010-04-05 stevenjchange new API to use unsigned where it makes sense
2010-04-04 stevenjdon't call MLSL recursively (e.g. in auglag)
2010-04-04 stevenjreturn error in global search if domain is not finite
2010-04-04 stevenjuse opt->dx in local sub-algorithm
2010-04-03 stevenjnew, extensible "object-oriented" API, first draft