Package graphs
Interface AStarGraph<V>
-
- Type Parameters:
V
- the type of vertices.
- All Superinterfaces:
Graph<V>
- All Known Implementing Classes:
MapGraph
public interface AStarGraph<V> extends Graph<V>
Directed, edge-weighted graph with a heuristic function to estimate distances between vertices.- See Also:
Graph
,AStarSolver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
estimatedDistance(V start, V end)
Returns an estimated distance from start to end.
-