| 70 | |
| 71 | |
| 72 | auto copy_solve_single(const vector<int>& crossrefs) -> void |
| 73 | { |
| 74 | for (unsigned i = 0; i < crossrefs.size(); i++) |
| 75 | { |
| 76 | if (crossrefs[i] == -1) |
| 77 | continue; |
| 78 | |
| 79 | START_THREAD_TIMER(thrId); |
| 80 | param.solvedp->solved_board[i] = |
| 81 | param.solvedp->solved_board[crossrefs[i]]; |
| 82 | END_THREAD_TIMER(thrId); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | |
| 87 | auto solve_chunk_common( |
nothing calls this directly
no outgoing calls
no test coverage detected