sim.field.network
Class Network.IndexOutIn

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

public static class Network.IndexOutIn
extends java.lang.Object
implements java.io.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:
Serialized Form

Field Summary
 Bag in
          Bag containing incoming edges of (entering) the node
 int index
          Index of the node in the allNodes bag
 Bag out
          Bag containing outgoing edges of (leaving) the node
 
Constructor Summary
Network.IndexOutIn(int index, Bag out, Bag in)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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 Detail

Network.IndexOutIn

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