Skip to content

Switched from futures to agents to reduce thread load

Latest
Compare
Choose a tag to compare
@NicMcPhee NicMcPhee released this 29 Aug 12:41
· 4 commits to master since this release

I initially used future to generate the parallelism, but that creates huge numbers of threads if the population size is large. So I switched to agent, which uses a thread pool, thereby keeping the total number of threads under control.