/*====================================================================* - Copyright (C) 2001 Leptonica. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANY - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *====================================================================*/ /* * sudokutest.c * * Tests sudoku solver and generator. */ #ifdef HAVE_CONFIG_H #include #endif /* HAVE_CONFIG_H */ #include "allheaders.h" static const char *startsol = "3 8 7 2 6 4 1 9 5 " "2 6 5 8 9 1 4 3 7 " "1 4 9 5 3 7 6 8 2 " "5 2 3 7 1 6 8 4 9 " "7 1 6 9 4 8 2 5 3 " "8 9 4 3 5 2 7 1 6 " "9 7 2 1 8 5 3 6 4 " "4 3 1 6 7 9 5 2 8 " "6 5 8 4 2 3 9 7 1"; int main(int argc, char **argv) { l_int32 unique; l_int32 *array; L_SUDOKU *sud; static char mainName[] = "sudokutest"; if (argc != 1 && argc != 2) return ERROR_INT(" Syntax: sudokutest [filein]", mainName, 1); setLeptDebugOK(1); if (argc == 1) { /* Generate a new sudoku by element elimination */ array = sudokuReadString(startsol); sud = sudokuGenerate(array, 3693, 28, 7); sudokuDestroy(&sud); lept_free(array); return 0; } /* Solve the input sudoku */ if ((array = sudokuReadFile(argv[1])) == NULL) return ERROR_INT("invalid input", mainName, 1); if ((sud = sudokuCreate(array)) == NULL) return ERROR_INT("sud not made", mainName, 1); sudokuOutput(sud, L_SUDOKU_INIT); startTimer(); sudokuSolve(sud); lept_stderr("Time: %7.3f sec\n", stopTimer()); sudokuOutput(sud, L_SUDOKU_STATE); sudokuDestroy(&sud); /* Test for uniqueness */ sudokuTestUniqueness(array, &unique); if (unique) lept_stderr("Sudoku is unique\n"); else lept_stderr("Sudoku is NOT unique\n"); lept_free(array); return 0; }