Package | Description |
---|---|
bridge |
This package contains classes for implementing a program
that allows a user to solve the Bridge Crossing problem.
|
framework |
This package contains three classes and an interface
that make up a framework for building applications that allow their users to
solve problems requiring
search.
|
waterjug |
This package contains classes for implementing a program
that allows a user to solve the Water Jug problem.
|
Modifier and Type | Class and Description |
---|---|
class |
BridgeMove
This class represents moves in the Bridge Crossing problem.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Move> |
Problem.getMoves()
Gets the list of moves for this problem.
|
Modifier and Type | Method and Description |
---|---|
void |
Problem.setMoves(java.util.List<Move> moves)
Sets the list of moves for this problem.
|
Modifier and Type | Class and Description |
---|---|
class |
WaterJugMove
This class represents moves in the Water Jug problem.
|