C# Class SwarmOps.Problems.Benchmark

Base-class for a benchmark optimization problem.
Inheritance: Problem
Show file Open project: DanWBR/dwsim3

Public Methods

Method Description
Benchmark ( int dimensionality, double lowerBound, double upperBound, double lowerInit, double upperInit, int maxIterations )

Construct the object.

Method Details

Benchmark() public method

Construct the object.
public Benchmark ( int dimensionality, double lowerBound, double upperBound, double lowerInit, double upperInit, int maxIterations )
dimensionality int Dimensionality of the problem.
lowerBound double Lower boundary for entire search-space.
upperBound double Upper boundary for entire search-space.
lowerInit double Lower boundary for initialization.
upperInit double Upper boundary for initialization.
maxIterations int Max optimization iterations to perform.