Méthode | Description | |
---|---|---|
Evaluate ( IChromosome chromosome ) : double |
Evaluates chromosome. The method calculates fitness value of the specified chromosome. |
|
OptimizationFunction ( double x ) : double |
Function to optimize. The method should be overloaded by inherited class to specify the optimization function. |
|
OptimizationFunction1D ( |
Initializes a new instance of the OptimizationFunction1D class.
|
|
Translate ( IChromosome chromosome ) : double |
Translates genotype to phenotype. The method returns double value, which represents function's input point encoded by the specified chromosome. |
public Evaluate ( IChromosome chromosome ) : double | ||
chromosome | IChromosome | Chromosome to evaluate. |
Résultat | double |
public abstract OptimizationFunction ( double x ) : double | ||
x | double | Function's input value. |
Résultat | double |
public OptimizationFunction1D ( |
||
range | Specifies range for optimization. | |
Résultat | System |
public Translate ( IChromosome chromosome ) : double | ||
chromosome | IChromosome | Chromosome, which genoteype should be /// translated to phenotype. |
Résultat | double |