ffloof / TurkishDraughts

A collection of ai, and guis for turkish draughts
1 stars 0 forks source link

Worker pool #5

Closed ffloof closed 2 years ago

ffloof commented 2 years ago

Use a worker pool instead of the current parallel solution. Probably best to implement with transposition table to avoid having to communicate between threads constantly.

ffloof commented 2 years ago

Transposition tables with high collisions favor multiple threads each with their own table and so a worker pool was often less efficient.