Uses of Interface
org.jgrapht.experimental.dag.DirectedAcyclicGraph.VisitedFactory

Packages that use DirectedAcyclicGraph.VisitedFactory
org.jgrapht.experimental.dag   
 

Uses of DirectedAcyclicGraph.VisitedFactory in org.jgrapht.experimental.dag
 

Classes in org.jgrapht.experimental.dag that implement DirectedAcyclicGraph.VisitedFactory
static class DirectedAcyclicGraph.VisitedArrayImpl
          This implementation, somewhat to my surprise, is slower than the ArrayList version, probably due to its reallocation of the underlying array for every topology reorder that is required.
static class DirectedAcyclicGraph.VisitedArrayListImpl
          This implementation seems to offer the best performance in most cases.
static class DirectedAcyclicGraph.VisitedBitSetImpl
          This implementation is close to the performance of VisitedArrayListImpl, with 1/8 the memory usage.
static class DirectedAcyclicGraph.VisitedHashSetImpl
          This implementation doesn't seem to perform as well, though I can imagine circumstances where it should shine (lots and lots of vertices).
 



Copyright © 2013. All rights reserved.