using System.Collections.Generic; namespace uqac_ia_sudoku_csp.Interfaces { public interface INextValueChooser { void SelectVariable(Board board, out int x, out int y, IList constraints); } }