Note: Sample output can be found in code/output/
- Change Directory to
code/jar/ - To run Sudoku Solver
java -jar SudokuSolver.jar <input-file> <output-file> <heuristic>0(No Heuristic, BS),1(MRV, BSI),2(MRV+LCV, BSII),3(MRV+LCV+MAC, BSMAC)
- Note: Requires jre version 1.8
Source files can be found in code/src/ and include:
SudokuSolver.javaBSSudokuSolver.javaBSISudokuSolver.javaBSIISudokuSolver.javaBSMACSudokuSolver.java
- Change Directory to
code/jar/ - To run Sudoku Solver
java -jar SAT.jar <input-file> <output-file> <minisat_static_binary> - Note #1: Requires jre version 1.8
- Note #2:
minisat_staticprovided incode/jar/folder might not work, you may need to compile on the system itself.
Source files can be found in code/src/ and include:
SAT.java