Class Network.IndexOutIn

java.lang.Object
sim.field.network.Network.IndexOutIn
All Implemented Interfaces:
Serializable
Enclosing class:
Network

public static class Network.IndexOutIn extends Object implements Serializable
The structure stored in the indexOutInHash hash table. Holds the index of a node in the allNodes bag, a Bag containing the node's outgoing edges, and a Bag containing the node's incoming edges.
See Also:
  • Field Details

    • index

      public int index
      Index of the node in the allNodes bag
    • out

      public Bag out
      Bag containing outgoing edges of (leaving) the node
    • in

      public Bag in
      Bag containing incoming edges of (entering) the node
  • Constructor Details

    • IndexOutIn

      public IndexOutIn(int index, Bag out, Bag in)