C# Class SwarmOps.Optimizers.Parallel.MOL

Parallel version of MOL which computes the fitness of its agents in parallel. Assumes the fitness function is thread-safe. Should only be used with very time-consuming optimization problems otherwise basic MOL will execute faster because of less overhead.
Inheritance: Optimizer
Afficher le fichier Open project: DanWBR/dwsim3

Méthodes publiques

Méthode Description
GetNumAgents ( double parameters ) : int

Get parameter, Number of agents, aka. swarm-size.

GetOmega ( double parameters ) : double

Get parameter, Omega.

GetPhi ( double parameters ) : double

Get parameter, Phi.

MOL ( ) : System.Diagnostics

Construct the object.

MOL ( Problem problem ) : System.Diagnostics

Construct the object.

MOL ( int numAgentsMultiple ) : System.Diagnostics

Construct the object.

MOL ( int numAgentsMultiple, Problem problem ) : System.Diagnostics

Construct the object.

Optimize ( double parameters ) : Result

Perform one optimization run and return the best found solution.

Method Details

GetNumAgents() public méthode

Get parameter, Number of agents, aka. swarm-size.
public GetNumAgents ( double parameters ) : int
parameters double Optimizer parameters.
Résultat int

GetOmega() public méthode

Get parameter, Omega.
public GetOmega ( double parameters ) : double
parameters double Optimizer parameters.
Résultat double

GetPhi() public méthode

Get parameter, Phi.
public GetPhi ( double parameters ) : double
parameters double Optimizer parameters.
Résultat double

MOL() public méthode

Construct the object.
public MOL ( ) : System.Diagnostics
Résultat System.Diagnostics

MOL() public méthode

Construct the object.
public MOL ( Problem problem ) : System.Diagnostics
problem Problem Problem to optimize.
Résultat System.Diagnostics

MOL() public méthode

Construct the object.
public MOL ( int numAgentsMultiple ) : System.Diagnostics
numAgentsMultiple int Population size multiple, e.g. 4 ensures populations are sized 4, 8, 12, 16, ...
Résultat System.Diagnostics

MOL() public méthode

Construct the object.
public MOL ( int numAgentsMultiple, Problem problem ) : System.Diagnostics
numAgentsMultiple int Population size multiple, e.g. 4 ensures populations are sized 4, 8, 12, 16, etc.
problem Problem Problem to optimize.
Résultat System.Diagnostics

Optimize() public méthode

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