SystemPerformanceOptimizerOptimize Method

Runs a Cross-Entropy program designed to optimize a system's performance in the specified context.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public SystemPerformanceOptimizationResults Optimize(
	SystemPerformanceOptimizationContext context,
	double rarity,
	int sampleSize
)

Parameters

context  SystemPerformanceOptimizationContext
The Cross-Entropy context representing the optimization problem to solve.
rarity  Double
The rarity applied by the Cross-Entropy method.
sampleSize  Int32
The size of the samples drawn during the sampling step of the Cross-Entropy method.

Return Value

SystemPerformanceOptimizationResults
The results of the Cross-Entropy optimizer.

Remarks

For a thorough description of the method and an example of how to use it, see the remarks about the SystemPerformanceOptimizer class.

Exceptions

ArgumentNullExceptioncontext is null.
ArgumentOutOfRangeExceptionsampleSize is not positive.
-or-
rarity is not positive.
-or-
rarity is not less than 1.

See Also