Uses of Class
org.jgrapht.traverse.ClosestFirstIterator.QueueEntry
Packages that use ClosestFirstIterator.QueueEntry
-
Uses of ClosestFirstIterator.QueueEntry in org.jgrapht.traverse
Subclasses with type arguments of type ClosestFirstIterator.QueueEntry in org.jgrapht.traverseModifier and TypeClassDescriptionclassClosestFirstIterator<V,E> A closest-first iterator for a directed or undirected graph.Fields in org.jgrapht.traverse with type parameters of type ClosestFirstIterator.QueueEntryModifier and TypeFieldDescriptionprivate org.jheaps.AddressableHeap<Double, ClosestFirstIterator.QueueEntry<V, E>> ClosestFirstIterator.heapPriority queue of fringe vertices.Constructor parameters in org.jgrapht.traverse with type arguments of type ClosestFirstIterator.QueueEntryModifierConstructorDescriptionClosestFirstIterator(Graph<V, E> g, Iterable<V> startVertices, double radius, Supplier<org.jheaps.AddressableHeap<Double, ClosestFirstIterator.QueueEntry<V, E>>> heapSupplier) Creates a new radius-bounded closest-first iterator for the specified graph.ClosestFirstIterator(Graph<V, E> g, V startVertex, double radius, Supplier<org.jheaps.AddressableHeap<Double, ClosestFirstIterator.QueueEntry<V, E>>> heapSupplier) Creates a new radius-bounded closest-first iterator for the specified graph.