Uses of Interface
implementation.queenproblem.IQueenGame

Packages that use IQueenGame
implementation.queenproblem   
 

Uses of IQueenGame in implementation.queenproblem
 

Classes in implementation.queenproblem that implement IQueenGame
 class QueenGame
           
 class QueenProxy
           
 

Methods in implementation.queenproblem that return IQueenGame
 IQueenGame QueenProblem.initial()
           
 

Methods in implementation.queenproblem that return types with arguments of type IQueenGame
 java.util.List<IQueenGame> QueenProblem.expand(IQueenGame state)
           
 

Methods in implementation.queenproblem with parameters of type IQueenGame
 int QueenProblem.compare(IQueenGame a, IQueenGame b)
           
 int QueenProxy.compareTo(IQueenGame o)
           
 int QueenGame.compareTo(IQueenGame o)
           
 double QueenProblem.difference(IQueenGame a, IQueenGame b)
           
 boolean QueenGame.equals(IQueenGame g)
           
 java.util.List<IQueenGame> QueenProblem.expand(IQueenGame state)
           
 boolean QueenProblem.isGoal(IQueenGame state)
           
 

Constructors in implementation.queenproblem with parameters of type IQueenGame
QueenGame(IQueenGame game)
           
QueenProxy(IQueenGame state, int x, int y)