Package mazealgo.model.algorithms.search
Class MazeState
java.lang.Object
mazealgo.model.algorithms.search.AState
mazealgo.model.algorithms.search.MazeState
- All Implemented Interfaces:
Serializable
A state in the maze search problem: a (row, column) cell.
Equality is based on the cell coordinates so the same cell reached
via different paths is treated as one state.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class mazealgo.model.algorithms.search.AState
getCameFrom, getCost, setCameFrom, setCost
-
Constructor Details
-
MazeState
public MazeState(int row, int column)
-
-
Method Details