* @brief Parameters for batch board solving. * * Contains input/output structures for solving multiple boards * in a single operation. */
| 192 | * in a single operation. |
| 193 | */ |
| 194 | struct ParamType |
| 195 | { |
| 196 | int no_of_boards; ///< Number of boards to solve |
| 197 | Boards const * bop; ///< Pointer to input boards |
| 198 | SolvedBoards * solvedp; ///< Pointer to output solutions |
| 199 | int error; ///< Error code from operation |
| 200 | }; |
| 201 | |
| 202 | /** |
| 203 | * @brief Execution mode for solver operations. |
nothing calls this directly
no outgoing calls
no test coverage detected