Uses of Package
com.act365.sudoku

Packages that use com.act365.sudoku
com.act365.sudoku   
 

Classes in com.act365.sudoku used by com.act365.sudoku
Composer
          A Composer object attempts to compose valid Su Doku puzzles with the MostCandidates strategy.
ControlContainer
          A ControlContainer instance contains the various buttons and text fields that sit underneath the Su Doku grid and control its operation.
Grid
          A Grid object represents a partially-filled Su Doku grid.
GridContainer
          The GridContainer class displays a Su Doku grid.
IState
          The IState interface is implemented by all the state types used within strategy types to track possible Su Doku solutions.
IStrategy
          A strategy is an algorithm that solves Su Doku problems.
LeastCandidatesHybrid
          LeastCandidatesHybrid combines the Least Candidates Cell and Least Candidates Number strategies.
MaskFactory
          The MaskFactory class iterates through the complete set of possible masks (a mask is a boolean[][] array that indicates whether the corresponding cells in Su Doku grids should have their initial values exposed) of a given size.
MoveException
          MoveException is the base class for all exceptions associated with the move (x,y):=value.
StrategyBase
          StrategyBase handles several thread-related function common to most implementors of IStrategy.