選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DhNextCellChooser.cs 376B

12345678910111213
  1. using System.Collections.Generic;
  2. using uqac_ia_sudoku_csp.Interfaces;
  3. namespace uqac_ia_sudoku_csp.Solver.NextValueChoosers
  4. {
  5. public class DhNextCellChooser : INextCellChooser
  6. {
  7. public void SelectVariable(Board board, out int x, out int y, IList<IConstraint> constraints)
  8. {
  9. throw new System.NotImplementedException();
  10. }
  11. }
  12. }