public interface AStarCostFunction
Modifier and Type | Method and Description |
---|---|
double |
getHeuristicCost(java.lang.Object currentNodeObj, java.lang.Object goalNodeObj)
Returns the heuristic cost between 2 AStarNodes (currnet node and goal node)
|
double getHeuristicCost(java.lang.Object currentNodeObj, java.lang.Object goalNodeObj)
currentNodeObj
- AStarNode current node objectgoalNodeObj
- AStarNode goal node object