Uses of Class
urv.util.graph.Weight

Packages that use Weight
org.jgroups.protocols   
urv.emulator.topology.graph   
urv.machannel   
urv.olsr.mcast   
urv.olsr.message   
urv.omolsr.data   
urv.omolsr.util   
urv.util.graph   
 

Uses of Weight in org.jgroups.protocols
 

Method parameters in org.jgroups.protocols with type arguments of type Weight
 java.lang.Object OLSR.passUpdateEvent(NetworkGraph<OLSRNode,Weight> networkGraph, RoutingTable routingTable)
          Passes an update (VIEW_CHANGE) event up to the stack
 

Uses of Weight in urv.emulator.topology.graph
 

Methods in urv.emulator.topology.graph that return types with arguments of type Weight
 NetworkGraph<Node,Weight> GraphInformation.getGraph()
           
 

Method parameters in urv.emulator.topology.graph with type arguments of type Weight
 boolean GraphChanges.performChangesUntilTimeInterval(java.lang.Integer currentTimeInterval, NetworkGraph<Node,Weight> networkGraph)
          Performs the changes stored whose timeInterval is less than currentTimeInterval
 

Constructor parameters in urv.emulator.topology.graph with type arguments of type Weight
GraphInformation(NetworkGraph<Node,Weight> graph, GraphChanges changes)
           
 

Uses of Weight in urv.machannel
 

Methods in urv.machannel that return types with arguments of type Weight
 NetworkGraph<OLSRNode,Weight> MChannelImpl.getNetworkGraph()
           
 NetworkGraph<OLSRNode,Weight> MChannel.getNetworkGraph()
          Retrieves the NetworkGraph with the topology below us
 

Uses of Weight in urv.olsr.mcast
 

Methods in urv.olsr.mcast that return types with arguments of type Weight
 NetworkGraph<OLSRNode,Weight> MulticastNetworkGraph.computeContractedGraph(java.lang.String mcastAddr)
          Computes the contracted graph for the specified group
 

Constructor parameters in urv.olsr.mcast with type arguments of type Weight
TopologyEvent(NetworkGraph<OLSRNode,Weight> networkGraph, RoutingTable routingTable, OLSRNode localNode)
           
 

Uses of Weight in urv.olsr.message
 

Method parameters in urv.olsr.message with type arguments of type Weight
 java.lang.Object OLSRMessageUpper.passUpdateEvent(NetworkGraph<OLSRNode,Weight> mcastNetworkGraph, RoutingTable routingTable)
           
 

Uses of Weight in urv.omolsr.data
 

Fields in urv.omolsr.data with type parameters of type Weight
static GraphUtils<OLSRNode,Weight> OMOLSRNetworkGraph.graphUtils
           
 

Methods in urv.omolsr.data that return types with arguments of type Weight
 NetworkGraph<OLSRNode,Weight> OMOLSRNetworkGraph.computeMinimumSpanningTree(OLSRNode localNode)
           
 NetworkGraph<OLSRNode,Weight> OMOLSRNetworkGraph.getNetworkGraphCopy()
           
 

Constructor parameters in urv.omolsr.data with type arguments of type Weight
OMOLSRNetworkGraph(NetworkGraph<OLSRNode,Weight> graph)
           
 

Uses of Weight in urv.omolsr.util
 

Fields in urv.omolsr.util declared as Weight
(package private)  Weight GraphUtils.dummyWeight
           
 

Uses of Weight in urv.util.graph
 

Methods in urv.util.graph that return Weight
static Weight Weight.add(Weight w1, Weight w2)
           
static Weight Weight.getNegativeInfinityWeight()
          Returns a unique negative infinity Weight object, necessary for Dijkstra comparisons
 Weight Edge.getWeight()
           
 Weight Weight.setMaxValue()
          Sets Weight to its maximum value.
 Weight Weight.setNegativeInfinityValue()
           
 Weight Weight.setValue(java.lang.Object o)
           
 Weight Weight.setZeroValue()
           
 

Methods in urv.util.graph with parameters of type Weight
static Weight Weight.add(Weight w1, Weight w2)
           
 void NetworkGraph.addEdge(N source, N target, Weight weight)
          Add a new (directed) Edge to the network structure
 void NetworkGraph.removeEdge(N src, N dst, Weight w)
          Removes an edge from the graph
 

Constructors in urv.util.graph with parameters of type Weight
Edge(N source, N target, Weight weight)