Uses of Class
sudoku.Field

Uses of Field in sudoku
 

Methods in sudoku that return Field
 Field PlayEngine.playRandomlyUntilSolvedOrQuit()
          Alternative solver that makes random choices at random locations to create a new solution, typically from an empty field.
 Field PlayEngine.playUntilSolvedOrQuit()
          Main playing routine.
 

Methods in sudoku with parameters of type Field
 void ViewScreen.drawAll(Field f)
          Redraw entire field
 void ViewScreen.putText(int x, int y, Field f)
          Display value at location
static SolutionType PlayEngine.verify(Field f)
          Play out the argument field to see if it is solvable.
 

Constructors in sudoku with parameters of type Field
Field(Field f)
          Create a Field that is a copy of an existing Field.
PlayEngine(Field field)
          Create a PlayEngine to play the given field.