Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }