Difference between revisions of "Config:Optimizer"

From SUMOwiki
Jump to navigationJump to search
(AutoConfig for SUMO 6.2)
(AutoConfig for SUMO 6.2)
Line 1: Line 1:
'''Generated for SUMO toolbox version 6.2'''.
+
'''Generated for SUMO toolbox version 7.0'''.
 
''We are well aware that documentation is not always complete and possibly even out of date in some cases. We try to document everything as best we can but much is limited by available time and manpower.  We are are a university research group after all. The most up to date documentation can always be found (if not here) in the default.xml configuration file and, of course, in the source files.  If something is unclear please dont hesitate to [[Reporting problems|ask]].''
 
''We are well aware that documentation is not always complete and possibly even out of date in some cases. We try to document everything as best we can but much is limited by available time and manpower.  We are are a university research group after all. The most up to date documentation can always be found (if not here) in the default.xml configuration file and, of course, in the source files.  If something is unclear please dont hesitate to [[Reporting problems|ask]].''
 
== Optimizer ==
 
== Optimizer ==

Revision as of 11:32, 25 March 2010

Generated for SUMO toolbox version 7.0. We are well aware that documentation is not always complete and possibly even out of date in some cases. We try to document everything as best we can but much is limited by available time and manpower. We are are a university research group after all. The most up to date documentation can always be found (if not here) in the default.xml configuration file and, of course, in the source files. If something is unclear please dont hesitate to ask.

Optimizer

directOptimizer

The DIviding RECtangles (DIRECT) optimization technique of Donald D. R. Jones

<[[Config:Optimizer|Optimizer]] type="[[Optimizer#DirectOptimizer|DirectOptimizer]]">
   <Option key="maxevals" value="1000"/>
   <Option key="maxits" value="300"/>
</[[Config:Optimizer|Optimizer]]>

patternsearch

Matlab Pattern search (patternsearch function of Matlab Direct Search toolbox)

<[[Config:Optimizer|Optimizer]] type="[[Optimizer#MatlabPatternSearch|MatlabPatternSearch]]">
   <Option key="maxIterations" value="500"/>
   <Option key="maxFunEvals" value="1000"/>
</[[Config:Optimizer|Optimizer]]>

fminconWithDerivatives

Matlab fmincon (Active-set) using derivative information (used for kriging models in SUMO-toolbox)

<[[Config:Optimizer|Optimizer]] type="[[Optimizer#MatlabOptimizer|MatlabOptimizer]]">
   <Option key="gradobj" value="on"/>
   <Option key="derivativecheck" value="off"/>
   <Option key="diagnostics" value="off"/>
   <Option key="algorithm" value="active-set"/>
</[[Config:Optimizer|Optimizer]]>