Commit 6950cc64 authored by David Hendriks's avatar David Hendriks
Browse files

added some comment

parent 1043b9ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -812,7 +812,7 @@ class Population(object):
        # TODO: calculate the chunksize value based on: total starcount and cores used. 
        r = list(p.imap_unordered(evolve_system, yield_system(), chunksize=20))

        # Handle clean termination of the whole multiprocessing
        # Handle clean termination of the whole multiprocessing (making sure there are no zombie processes (https://en.wikipedia.org/wiki/Zombie_process))
        p.close()
        p.join()