Click or drag to resize

INumericalOptimization Interface

Common interface for all numerical optimization algrorithms.

Namespace:  FinMath.NumericalOptimization
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public interface INumericalOptimization

The INumericalOptimization type exposes the following members.

Properties
  NameDescription
Public propertyIterationsDone
Number of iterations done.
Public propertyIterationsLimit
Maximum number of iterations allowed, a positive integer.
Public propertyMinimumPoint
Minimum point of objective function.
Public propertyMinimumValue
Minimum value of objective function.
Public propertyStatus
Status of algorithm termination.
Public propertyTolerance
Algorithm termination tolerance, a positive scalar.
Top
Methods
  NameDescription
Public methodMinimize
Finds minimum of constrained multivariable function.
Public methodMinimize(Vector)
Finds minimum of constrained multivariable function.
Top
Events
  NameDescription
Public eventLogMessage
An event that occures every time the INumericalOptimization wants to send a log message.
Top
See Also