Cross Entropy Solver
Parameters
The evaluator responsible for assessing the quality of solutions. Must implement the EvaluatorIfc interface.
the single random number stream number for the solver; defaults to 0 (the next available stream). The solver's base stream uses this number, and the attached sampler is given the next available stream from the same provider, so the base and the sampler are distinct.
the provider of random number streams; defaults to a fresh RNStreamProvider, so each solver has its own streams.
the cross-entropy sampler (reference distribution). By default this is a CENormalSampler. The supplied sampler is attached to this solver (adopted onto the solver's provider), so a sampler can be built and exercised standalone and then handed to the solver. The sampler cannot be changed while the solver is running.
The maximum number of iterations allowed for the search process.
Strategy to determine the number of replications to perform for each evaluation.
Used when testing if solutions have converged for equality between solutions. The default is InputsAndConfidenceIntervalEquality, which checks if the inputs are the same and their is no statistical difference between the solutions
Optional name identifier for this instance of solver.
Constructs an instance of CrossEntropySolver with specified parameters.
Parameters
The evaluator responsible for assessing the quality of solutions. Must implement the EvaluatorIfc interface.
the single random number stream number for the solver; defaults to 0 (the next available stream).
the provider of random number streams; defaults to a fresh RNStreamProvider, so each solver has its own streams.
the cross-entropy sampler (reference distribution). By default this is a CENormalSampler; it is attached to this solver (adopted onto the solver's provider).
The maximum number of iterations allowed for the search process.
The number of replications to perform for each evaluation of a solution.
Optional name identifier for this instance of the solver.