Uses of Class
implementation.gridpuzzle.GridState

Packages that use GridState
implementation.gridpuzzle   
 

Uses of GridState in implementation.gridpuzzle
 

Methods in implementation.gridpuzzle that return GridState
 GridState GridState.getParent()
           
 GridState GridProblem.initial()
           
 

Methods in implementation.gridpuzzle that return types with arguments of type GridState
 java.util.List<GridState> GridProblem.expand(GridState state)
           
 

Methods in implementation.gridpuzzle with parameters of type GridState
 int GridProblem.depth(GridState state)
           
 boolean GridState.equals(GridState g)
           
 java.util.List<GridState> GridProblem.expand(GridState state)
           
 double GridProblem.g(GridState state)
           
 double GridProblem.h(GridState state)
           
 boolean GridProblem.isGoal(GridState state)
           
 

Constructors in implementation.gridpuzzle with parameters of type GridState
GridState(GameGrid current, java.awt.Point move, GridState parent)