TargetedSegmentListOptimizerFunctionResults Constructor (SegmentListResults, Double, NullableDouble, Double, Double, SegmentListConfiguration) |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TargetedSegmentListOptimizerFunctionResults(
SegmentListResults segmentResults,
double[] variables,
double? costFunctionValue,
double[] equalityValues,
double[] inequalityValues,
SegmentListConfiguration configuration
)
Public Sub New (
segmentResults As SegmentListResults,
variables As Double(),
costFunctionValue As Double?,
equalityValues As Double(),
inequalityValues As Double(),
configuration As SegmentListConfiguration
)
public:
TargetedSegmentListOptimizerFunctionResults(
SegmentListResults^ segmentResults,
array<double>^ variables,
Nullable<double> costFunctionValue,
array<double>^ equalityValues,
array<double>^ inequalityValues,
SegmentListConfiguration^ configuration
)
new :
segmentResults : SegmentListResults *
variables : float[] *
costFunctionValue : Nullable<float> *
equalityValues : float[] *
inequalityValues : float[] *
configuration : SegmentListConfiguration -> TargetedSegmentListOptimizerFunctionResults
Parameters
- segmentResults
- Type: AGI.Foundation.SegmentPropagationSegmentListResults
The results from the run of the parent TargetedSegmentList - variables
- Type: SystemDouble
The variable values used when computing this set of results. - costFunctionValue
- Type: SystemNullableDouble
The computed value of the cost function (or if the cost function is inactive). - equalityValues
- Type: SystemDouble
The computed values of the equality constraints. - inequalityValues
- Type: SystemDouble
The computed values of the inequality constraints. - configuration
- Type: AGI.Foundation.SegmentPropagationSegmentListConfiguration
The configuration used when propagating the propagator that created segmentResults during the
evaluation of the TargetedSegmentListFunction.
See Also