Changes between Version 8 and Version 9 of OptimizationProblems

Show
Ignore:
Timestamp:
04/20/07 04:53:07 (6 years ago)
Author:
jarrod.millman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OptimizationProblems

    v8 v9  
    2626output structure r will include algorithm used, license of the solver used, its authors, web homepage of the solver, time, cputime elapsed, and much more. Some of the info will be printed (by default) before or after solver's work.  All of the above is already done in my [http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=13115&objectType=file OpenOpt] version for MATLAB/Octave (parallel - currently only for objfun gradient obtaining, not constraints) but for many reasons (the main is pass-by-copy in MATLAB/Octave vs pass-by-reference in Python) I'm rewriting all the code to Python now & intend to continue development using Python language. 
    2727 
    28  * write ralg() & ShorEllipsoid() solvers (Unconstrained: ~1 week, constrained: +2-3 weeks) 
     28 * write ralg() & !ShorEllipsoid() solvers (Unconstrained: ~1 week, constrained: +2-3 weeks) 
    2929 * write nonSmoothSolve() : ~ 1-2 weeks 
    3030 * writing MATLAB bintprog equivalent (f*x->min, A*x<=b, Aeq*x=beq) based on rd.  Shilo (& others)