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.(package private) classHelper class for backward search, since it should operate on the reversed graph.Fields in org.jgrapht.alg.shortestpath declared as AStarAdmissibleHeuristicModifier and TypeFieldDescriptionprotected AStarAdmissibleHeuristic<V> AStarShortestPath.admissibleHeuristicprivate AStarAdmissibleHeuristic<V> BidirectionalAStarShortestPath.backwardHeuristicHeuristic used for backward search.private AStarAdmissibleHeuristic<V> BidirectionalAStarShortestPath.forwardHeuristicHeuristic used for forward search.(package private) final AStarAdmissibleHeuristic<V> BidirectionalAStarShortestPath.AStarSearchFrontier.heuristicHeuristic used in this frontier.private final AStarAdmissibleHeuristic<V> BidirectionalAStarShortestPath.ReversedGraphHeuristic.heuristicMethods in org.jgrapht.alg.shortestpath with parameters of type AStarAdmissibleHeuristicModifier and TypeMethodDescriptionprivate voidAStarShortestPath.initialize(AStarAdmissibleHeuristic<V> admissibleHeuristic) Initializes the data structures.Constructors in org.jgrapht.alg.shortestpath with parameters of type AStarAdmissibleHeuristicModifierConstructorDescription(package private)AStarSearchFrontier(Graph<V, E> graph, V endVertex, AStarAdmissibleHeuristic<V> heuristic) AStarShortestPath(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.(package private)ReversedGraphHeuristic(AStarAdmissibleHeuristic<V> heuristic)