/ForkJoinSudokuSolver

Fork/Join algorithm that count the number of solutions of a given Sudoku in parallel

Primary LanguageJava

Fork/Join Sudoku Solver

Fork/Join algorithm that count the number of solutions of a given Sudoku in parallel.

How to use

Build a jar and run

java -jar sudoku_solver.jar file_name.txt [cutoff_i] [cutoff_j] 

E.G.

  • With standard cutoff
java -jar sudoku_solver.jar test/test1_a.txt 
  • With custom cutoff
java -jar sudoku_solver.jar test/test1_a.txt 0 1 

Test