Parallelism Config
interface ParallelismConfig
Configuration of basic parameters for parallel processing. Please note that parallel computing is only justified for really complex operations. Computationally simple genetic operators such as selection or mutation may be more efficient to execute serially than in parallel.
If you really need parallelism for your computations, you can manually limit the execution of simple genetic operators by using NO_PARALLELISM to improve performance:
evolution {
selTournament(size = 3, parallelismLimit = NO_PARALLELISM)
}
Content copied to clipboard
Creates with ParallelismConfig.