sim.field.network
Class NetworkField.IndexOutIn

java.lang.Object
  extended bysim.field.network.NetworkField.IndexOutIn
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
NetworkField

public static class NetworkField.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
NetworkField.IndexOutIn(int index, Bag out, Bag in)
           
 
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

NetworkField.IndexOutIn

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