Uses of Class
com.act365.sudoku.MoveException

Packages that use MoveException
com.act365.sudoku   
 

Uses of MoveException in com.act365.sudoku
 

Subclasses of MoveException in com.act365.sudoku
 class MoveAlreadyEliminatedException
          A MoveAlreadyEliminatedException exception is thrown by a state grid if the given move has already been eliminated.
 class MoveCantBeEliminatedException
          A MoveCantBeEliminatedException exception is thrown by a state grid if the given move cannot be eliminated.
 

Methods in com.act365.sudoku that throw MoveException
 void NumberState.addMove(int x, int y, int value)
          Adds the move (x,y):=v to the state grid.
 void LinearSystemState.addMove(int x, int y, int v)
          Adds the constraint (x,y):=v to the system and reduces.
 void IState.addMove(int x, int y, int v)
          Updates the state grid to account for the move (x,y):=v.
 void InvulnerableState.addMove(int x, int y, int value)
          Adds the move (x,y):=v to the state grid.
 void CellState.addMove(int x, int y, int value)
          Adds the move (x,y):=v to the state grid.