namespace uqac_ia_sudoku_csp.Interfaces { public interface IConstraint { bool Check(Board board, int x, int y); } }