Class AbstractDirectedNetworkConnections<N,​E>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.util.Map<E,​N> inEdgeMap
      Keys are edges incoming to the origin node, values are the source node.
      (package private) java.util.Map<E,​N> outEdgeMap
      Keys are edges outgoing from the origin node, values are the target node.
      private int selfLoopCount  
    • Field Detail

      • inEdgeMap

        final java.util.Map<E,​N> inEdgeMap
        Keys are edges incoming to the origin node, values are the source node.
      • outEdgeMap

        final java.util.Map<E,​N> outEdgeMap
        Keys are edges outgoing from the origin node, values are the target node.
      • selfLoopCount

        private int selfLoopCount
    • Constructor Detail

      • AbstractDirectedNetworkConnections

        AbstractDirectedNetworkConnections​(java.util.Map<E,​N> inEdgeMap,
                                           java.util.Map<E,​N> outEdgeMap,
                                           int selfLoopCount)