public PartitionOptimizationContext(
Func<DoubleMatrix, double> objectiveFunction,
int stateDimension,
int partitionDimension,
double probabilitySmoothingCoefficient,
OptimizationGoal optimizationGoal,
int minimumNumberOfIterations,
int maximumNumberOfIterations
)
Public Sub New (
objectiveFunction As Func(Of DoubleMatrix, Double),
stateDimension As Integer,
partitionDimension As Integer,
probabilitySmoothingCoefficient As Double,
optimizationGoal As OptimizationGoal,
minimumNumberOfIterations As Integer,
maximumNumberOfIterations As Integer
)
public:
PartitionOptimizationContext(
Func<DoubleMatrix^, double>^ objectiveFunction,
int stateDimension,
int partitionDimension,
double probabilitySmoothingCoefficient,
OptimizationGoal optimizationGoal,
int minimumNumberOfIterations,
int maximumNumberOfIterations
)
new :
objectiveFunction : Func<DoubleMatrix, float> *
stateDimension : int *
partitionDimension : int *
probabilitySmoothingCoefficient : float *
optimizationGoal : OptimizationGoal *
minimumNumberOfIterations : int *
maximumNumberOfIterations : int -> PartitionOptimizationContext
It is assumed that the objectiveFunction will accept row vectors as valid representations of an argument.
Any argument represents a partition
of stateDimension items, say
,
having no more than partitionDimension parts,
say
.
An argument
must have its
-th entry
equal to
if the corresponding item is included in
the
-th part, with
.
As discussed by Rubinstein and Kroese, Remark 5.2, p. 189[1], typical values for probabilitySmoothingCoefficient are between .7 and 1 (excluded).
ArgumentNullException | objectiveFunction is null. |
ArgumentException | optimizationGoal is not a field of
OptimizationGoal. -or- minimumNumberOfIterations is greater than maximumNumberOfIterations. -or- partitionDimension is not less than stateDimension. |
ArgumentOutOfRangeException | probabilitySmoothingCoefficient is not
in the open interval between 0 and 1. -or- stateDimension is not positive. -or- partitionDimension is not greater than one. -or- minimumNumberOfIterations is not positive. -or- maximumNumberOfIterations is not positive. |