Method | Description | |
---|---|---|
Maximize ( ) : bool |
Finds the maximum value of a function. The solution vector will be made available at the Solution property.
|
|
Maximize ( double values ) : bool |
Finds the maximum value of a function. The solution vector will be made available at the Solution property.
|
|
Minimize ( ) : bool |
Finds the minimum value of a function. The solution vector will be made available at the Solution property.
|
|
Minimize ( double values ) : bool |
Finds the minimum value of a function. The solution vector will be made available at the Solution property.
|
Method | Description | |
---|---|---|
ArgumentException ( string paramName, string message, string code ) : |
Creates an exception with a given inner optimization algorithm code (for debugging purposes).
|
|
BaseOptimizationMethod ( |
Initializes a new instance of the BaseOptimizationMethod class.
|
|
BaseOptimizationMethod ( int numberOfVariables ) : System |
Initializes a new instance of the BaseOptimizationMethod class.
|
|
BaseOptimizationMethod ( int numberOfVariables, double>.Func |
Initializes a new instance of the BaseOptimizationMethod class.
|
|
OperationException ( string message, string code ) : |
Creates an exception with a given inner optimization algorithm code (for debugging purposes).
|
|
Optimize ( ) : bool |
Implements the actual optimization algorithm. This method should try to minimize the objective function.
|
Method | Description | |
---|---|---|
init ( int numberOfVariables ) : void |
protected static ArgumentException ( string paramName, string message, string code ) : |
||
paramName | string | |
message | string | |
code | string | |
return |
protected BaseOptimizationMethod ( |
||
function | The objective function whose optimum values should be found. | |
return | System |
protected BaseOptimizationMethod ( int numberOfVariables ) : System | ||
numberOfVariables | int | The number of free parameters in the optimization problem. |
return | System |
protected BaseOptimizationMethod ( int numberOfVariables, double>.Func |
||
numberOfVariables | int | The number of free parameters in the optimization problem. |
function | double>.Func | The objective function whose optimum values should be found. |
return | System |
public Maximize ( double values ) : bool | ||
values | double | The initial solution vector to start the search. |
return | bool |
public Minimize ( double values ) : bool | ||
values | double | The initial solution vector to start the search. |
return | bool |
protected static OperationException ( string message, string code ) : |
||
message | string | |
code | string | |
return |