Uses of Interface
org.jgrapht.alg.interfaces.AStarAdmissibleHeuristic
Packages that use AStarAdmissibleHeuristic
-
Uses of AStarAdmissibleHeuristic in org.jgrapht.alg.shortestpath
Classes in org.jgrapht.alg.shortestpath that implement AStarAdmissibleHeuristicModifier and TypeClassDescriptionclassAn admissible heuristic for the A* algorithm using a set of landmarks and the triangle inequality.Fields in org.jgrapht.alg.shortestpath declared as AStarAdmissibleHeuristicModifier and TypeFieldDescriptionprotected AStarAdmissibleHeuristic<V>AStarShortestPath.admissibleHeuristicConstructors in org.jgrapht.alg.shortestpath with parameters of type AStarAdmissibleHeuristicModifierConstructorDescriptionAStarShortestPath(Graph<V, E> graph, AStarAdmissibleHeuristic<V> admissibleHeuristic) Create a new instance of the A* shortest path algorithm.AStarShortestPath(Graph<V, E> graph, AStarAdmissibleHeuristic<V> admissibleHeuristic, Supplier<org.jheaps.AddressableHeap<Double, V>> heapSupplier) Create a new instance of the A* shortest path algorithm.BidirectionalAStarShortestPath(Graph<V, E> graph, AStarAdmissibleHeuristic<V> heuristic) Constructs a new instance of the algorithm for a given graph and heuristic.BidirectionalAStarShortestPath(Graph<V, E> graph, AStarAdmissibleHeuristic<V> heuristic, Supplier<org.jheaps.AddressableHeap<Double, V>> heapSupplier) Constructs a new instance of the algorithm for a given graph, heuristic and heap supplier.