Click or drag to resize

SolvableMultivariableFunction Methods

The SolvableMultivariableFunction type exposes the following members.

Methods
  NameDescription
Public methodApplyResults
For SolvableMultivariableFunctions that have state, there may be times when that state should be manually set on a function (sometimes for performance reasons, when the function will be called multiple times and it should start from where it left off). This method will manually set that state, if needed.
Protected methodCallDerivativeEvaluationEvent
Public methodClone
Clones this object using the specified context.
Public methodDispose
Releases any resources associated with this instance.
Protected methodDispose(Boolean)
Releases any resources associated with this instance.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodEvaluate(Double, ITrackCalculationProgress)
Evaluates the function. The SolvableMultivariableFunctionResults returned must include the computed constraints in the order that they are in the Constraints. If your function computes more than just constraint values you should extend SolvableMultivariableFunctionResults to contain those additional results.
Public methodEvaluate(Double, Int32, Boolean, ITrackCalculationProgress)
Evaluates the function and the Jacobian. This will call both the DerivativeEvaluationEvent and the NormalFunctionEvaluationEvent events.
Public methodEvaluateDerivative(Double, Boolean, ITrackCalculationProgress)
Evaluates the Jacobian of this function. The default implementation of this method will numerically compute the Jacobian. To do that, the value of the function at the variables will be computed. When using the default implementation, the PerturbationValues must be set.
Public methodEvaluateDerivative(Double, Boolean, SolvableMultivariableFunctionResults, ITrackCalculationProgress)
Evaluates the Jacobian of this function. The default implementation of this method will numerically compute the Jacobian. To do that, the value of the function at the variables will be computed.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also