using System.Collections.Generic; using uqac_ia_sudoku_csp.Interfaces; namespace uqac_ia_sudoku_csp.Solver.NextValueChoosers { public class DhNextCellChooser : INextCellChooser { public void SelectVariable(Board board, out int x, out int y, IList constraints) { throw new System.NotImplementedException(); } } }