Class AbstractDirectedNetworkConnections<N,​E>

    • Field Summary

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

      Constructors 
      Modifier Constructor Description
      protected AbstractDirectedNetworkConnections​(java.util.Map<E,​N> inEdgeMap, java.util.Map<E,​N> outEdgeMap, int selfLoopCount)  
    • Field Detail

      • inEdgeMap

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

        protected 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

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