C# Class SwarmOps.Optimizers.LUS

Local Unimodal Sampling (LUS) optimizer originally due to Pedersen (1). Does local sampling with an exponential decrease of the sampling-range. Works well for many optimization problems, especially when only short runs are allowed. Is particularly well suited as the overlaying meta-optimizer when tuning parameters for another optimizer.
References: (1) M.E.H. Pedersen. Tuning & Simplifying Heuristical Optimization. PhD Thesis, University of Southampton, 2010.
Inheritance: Optimizer
显示文件 Open project: DanWBR/dwsim3

Public Methods

Method Description
GetGamma ( double parameters ) : double

Get parameter, Gamma.

LUS ( ) : System.Diagnostics

Construct the object.

LUS ( Problem problem ) : System.Diagnostics

Construct the object.

Optimize ( double parameters ) : Result

Perform one optimization run and return the best found solution.

Method Details

GetGamma() public method

Get parameter, Gamma.
public GetGamma ( double parameters ) : double
parameters double Optimizer parameters.
return double

LUS() public method

Construct the object.
public LUS ( ) : System.Diagnostics
return System.Diagnostics

LUS() public method

Construct the object.
public LUS ( Problem problem ) : System.Diagnostics
problem Problem Problem to optimize.
return System.Diagnostics

Optimize() public method

Perform one optimization run and return the best found solution.
public Optimize ( double parameters ) : Result
parameters double Control parameters for the optimizer.
return Result