Interface OrderedMultiGraph<T>

All Superinterfaces:
EdgeManager<T>, Graph<T>, Iterable<T>, NodeManager<T>
All Known Implementing Classes:
BasicOrderedMultiGraph

public interface OrderedMultiGraph<T> extends Graph<T>
  • Method Details

    • getSuccessor

      T getSuccessor(T node, int i)
      get the ith successor of a node
    • addEdge

      void addEdge(int i, T src, T dst)
      add an edge and record it so dst is the ith successor of src