public CombinationOptimizationContext(
Func<DoubleMatrix, double> objectiveFunction,
int stateDimension,
int combinationDimension,
double probabilitySmoothingCoefficient,
OptimizationGoal optimizationGoal,
int minimumNumberOfIterations,
int maximumNumberOfIterations
)
Public Sub New (
objectiveFunction As Func(Of DoubleMatrix, Double),
stateDimension As Integer,
combinationDimension As Integer,
probabilitySmoothingCoefficient As Double,
optimizationGoal As OptimizationGoal,
minimumNumberOfIterations As Integer,
maximumNumberOfIterations As Integer
)
public:
CombinationOptimizationContext(
Func<DoubleMatrix^, double>^ objectiveFunction,
int stateDimension,
int combinationDimension,
double probabilitySmoothingCoefficient,
OptimizationGoal optimizationGoal,
int minimumNumberOfIterations,
int maximumNumberOfIterations
)
new :
objectiveFunction : Func<DoubleMatrix, float> *
stateDimension : int *
combinationDimension : int *
probabilitySmoothingCoefficient : float *
optimizationGoal : OptimizationGoal *
minimumNumberOfIterations : int *
maximumNumberOfIterations : int -> CombinationOptimizationContext
It is assumed that the objectiveFunction will accept row vectors as valid representations of an argument.
Any argument represents a combination
of stateDimension, say
, items
taken combinationDimension, say
,
at a time.
An argument,
say
, must have its
-th entry
equal to
if the corresponding item is included in
the combination;
otherwise.
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- combinationDimension is not less than stateDimension. |
ArgumentOutOfRangeException | probabilitySmoothingCoefficient is not
in the open interval between 0 and 1. -or- stateDimension is not positive. -or- combinationDimension is not positive. -or- minimumNumberOfIterations is not positive. -or- maximumNumberOfIterations is not positive. |