Processes aren't properly closed after the algorithm runs. When running multiple GA executions in a loop, the OS will eventually hit the limit for number of processes. No Bueno.
This quick fix works and explicitly closes processes after the algorithm has run.
Adding pool.close and pool.join calls to ensure processes are properly closed.
Processes aren't properly closed after the algorithm runs. When running multiple GA executions in a loop, the OS will eventually hit the limit for number of processes. No Bueno.
This quick fix works and explicitly closes processes after the algorithm has run.
Adding pool.close and pool.join calls to ensure processes are properly closed.