summaryrefslogtreecommitdiff
path: root/src/sudoku.h
blob: 57dcf571e4da4d30a66df04d4e340c8b768d71e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

#ifndef __INCLUDED_SUDOKUSOLVER_SUDOKU__
#define __INCLUDED_SUDOKUSOLVER_SUDOKU__

#include "cell.h"

class Sudoku {
	
public:
	Sudoku();
	
	Sudoku(const Sudoku & other);
	
	void assign(const Sudoku & other);
	
	int compare_and_assign(const Sudoku & other);
	
	void reset();
	
	bool validate();

	/**
	 * @brief reset solution space of the given cell
	 * */
	void reset_cell(int pos_row, int pos_column);
	
	int solve_constraints(int pos_row, int pos_column);
	
	int solve_constraints();
	
	int solve_coverage();
	
	inline Cell & cell (int row, int column)
	{
		return sudoku_cell[row][column];
	}
	
	inline const Cell & cell(int row, int column) const 
	{
		return sudoku_cell[row][column];
	}
private:
	Cell sudoku_cell[9][9];
};

#endif // __INCLUDED_SUDOKUSOLVER_SUDOKU__