MCPcopy Create free account
hub / github.com/dds-bridge/dds / copy_solve_single

Function copy_solve_single

library/src/solve_board.cpp:72–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70
71
72auto 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
87auto solve_chunk_common(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected