Click or drag to resize
Accord.NET (logo)

OptimizationFunction2DOptimizationFunction Method

Function to optimize.

Namespace:  Accord.Genetic
Assembly:  Accord.Genetic (in Accord.Genetic.dll) Version: 3.8.0
Syntax
public abstract double OptimizationFunction(
	double x,
	double y
)
Request Example View Source

Parameters

x
Type: SystemDouble
Function X input value.
y
Type: SystemDouble
Function Y input value.

Return Value

Type: Double
Returns function output value.
Remarks
The method should be overloaded by inherited class to specify the optimization function.
See Also