/*
DDS, a bridge double dummy solver.
Copyright (C) 2006-2014 by Bo Haglund /
2014-2018 by Bo Haglund & Soren Hein.
See LICENSE and README.
*/
/**
* @brief Process boards [0, count) with work-stealing parallelism.
*
* @param count Number of board indices to process.
* @param worker_cap Maximum worker threads; <= 0 uses hardware concurrency.
* @param process_board Called for each board; must return RETURN_NO_FAULT (1)
* on success. Receives the worker's thread index and board number.
* @return First non-success code from @p process_board, or RETURN_NO_FAULT.
*/
auto int;