Package mazealgo.model.algorithms.maze3D
Class Maze3DState
java.lang.Object
mazealgo.model.algorithms.search.AState
mazealgo.model.algorithms.maze3D.Maze3DState
- All Implemented Interfaces:
Serializable
A state in the 3D maze search problem: a (depth, 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
-
Maze3DState
public Maze3DState(int depth, int row, int column)
-
-
Method Details