Uses of Class
implementation.gridpuzzle.GameGrid

Packages that use GameGrid
implementation.gridpuzzle   
 

Uses of GameGrid in implementation.gridpuzzle
 

Methods in implementation.gridpuzzle that return GameGrid
 GameGrid GridState.getGrid()
           
 

Methods in implementation.gridpuzzle with parameters of type GameGrid
static void Main.buildCustom(GameGrid target)
           
static void Main.buildDefault(GameGrid target)
           
static void Main2.buildDifficult(GameGrid target)
           
static void Main2.buildEasy(GameGrid target)
           
static void Main.buildRandom(GameGrid target)
           
 boolean GameGrid.comparable(GameGrid g)
           
 boolean GameGrid.equals(GameGrid g)
           
 double HeuristicTwo.get(GameGrid current, GameGrid target)
           
abstract  double AbstractHeuristic.get(GameGrid current, GameGrid target)
           
 double HeuristicThree.get(GameGrid current, GameGrid target)
           
 double HeuristicOne.get(GameGrid current, GameGrid target)
           
 boolean AbstractHeuristic.isCompatible(GameGrid current, GameGrid target)
           
 boolean AbstractHeuristic.isCorrect(GameGrid current, GameGrid target)
           
 boolean AbstractHeuristic.isCorrect(GameGrid current, GameGrid target, int x, int y)
           
 

Constructors in implementation.gridpuzzle with parameters of type GameGrid
GameGrid(GameGrid game)
           
GridProblem(GameGrid initial, GameGrid goal, AbstractHeuristic heuristic)
           
GridState(GameGrid current)
           
GridState(GameGrid current, java.awt.Point move, GridState parent)