@Deprecated public interface AStarGoal<NODE> extends AStarEvaluator<NODE>
isGoalReached(Object) method.
Use amis-path-finding library instead, see svn://artemis.ms.mff.cuni.cz/pogamut/trunk/project/Utils/AmisPathFinding
| Modifier and Type | Method and Description |
|---|---|
boolean |
isGoalReached(NODE actualNode)
Deprecated.
Returns true, if we've reached the goal ... e.g. actualNode
is node we were trying to get to
if this function never returns true, A* will run until
all nodes are evaluated
|
void |
setCloseList(Collection<NODE> closeList)
Deprecated.
This is called at the beginning of the A* algorithm to bind the close list
to the goal (you may use it check which nodes we've visited, etc... for
extra cost for instance).
|
void |
setOpenList(Collection<NODE> openList)
Deprecated.
This is called at the beginning of the A* algorithm to bind the open list
to the goal (you may use it check which nodes we've visited, etc... for
extra cost for instance).
|
getExtraCost, isNodeOpenedgetEstimatedDistanceToGoalvoid setOpenList(Collection<NODE> openList)
void setCloseList(Collection<NODE> closeList)
boolean isGoalReached(NODE actualNode)
actualNode - Copyright © 2019 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.