| 267 | |
| 268 | |
| 269 | int STDCALL SolveAllChunksBin( |
| 270 | Boards const * bop, |
| 271 | SolvedBoards * solvedp, |
| 272 | int chunkSize) |
| 273 | { |
| 274 | // Historical aliases. Don't use -- they may go away. |
| 275 | if (chunkSize < 1) |
| 276 | return RETURN_CHUNK_SIZE; |
| 277 | |
| 278 | return solve_all_boards_n(* bop, * solvedp); |
| 279 | } |
| 280 | |
| 281 | |
| 282 | auto detect_solve_duplicates( |
nothing calls this directly
no test coverage detected