| 241 | |
| 242 | |
| 243 | int STDCALL SolveAllChunksPBN( |
| 244 | BoardsPBN const * bop, |
| 245 | SolvedBoards * solvedp, |
| 246 | int chunkSize) |
| 247 | { |
| 248 | // Historical aliases. Don't use -- they may go away. |
| 249 | if (chunkSize < 1) |
| 250 | return RETURN_CHUNK_SIZE; |
| 251 | |
| 252 | return SolveAllBoards(bop, solvedp); |
| 253 | } |
| 254 | |
| 255 | |
| 256 | int STDCALL SolveAllChunks( |
nothing calls this directly
no test coverage detected