Parallel Evaluation Options
Options that select and configure parallel evaluation when building an evaluator via Evaluator.createProblemEvaluator (and the Solver.create* factories that delegate to it).
Defaults preserve the historical behavior: enabled = false builds the sequential SimulationProvider. When enabled is true, a ParallelSimulationProvider is built instead, which evaluates the points of a multi-point request concurrently (single-point requests still run on one reused model — see shortCircuitSinglePoint).
Parameters
when true, build a parallel evaluation oracle; default false (sequential)
the maximum number of concurrent model evaluations; null uses the number of available processors. Must be > 0 when specified.
when true (default), a single-point request runs on one reused model rather than the parallel path; see ParallelSimulationProvider