C# Class SwarmOps.Optimizers.RND

Samples the search-space completely at random. Used for comparing other optimizers to 'worst-case' performance.
Inheritance: Optimizer
Datei anzeigen Open project: DanWBR/dwsim3

Public Methods

Method Description
Optimize ( double parameters ) : Result

Perform one optimization run and return the best found solution.

RND ( )

Construct the object.

RND ( Problem problem )

Construct the object.

Method Details

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

RND() public method

Construct the object.
public RND ( )

RND() public method

Construct the object.
public RND ( Problem problem )
problem Problem Problem to optimize.