Uses of Class
org.javanetworkanalyzer.data.VUCent

Packages that use VUCent
org.javanetworkanalyzer.alg   
org.javanetworkanalyzer.analyzers   
 

Uses of VUCent in org.javanetworkanalyzer.alg
 

Methods in org.javanetworkanalyzer.alg that return VUCent
protected  VUCent BFSForCentrality.dequeueStep(LinkedList<VUCent> queue)
          Dequeues a node from the given queue and pushes it to the stack.
 

Methods in org.javanetworkanalyzer.alg with parameters of type VUCent
protected  void BFSForCentrality.firstTimeFoundStep(VUCent current, VUCent neighbor)
           
protected  void BFSForCentrality.firstTimeFoundStep(VUCent current, VUCent neighbor)
           
protected  void BFSForCentrality.init(VUCent startNode)
           
protected  void BFSForCentrality.shortestPathStep(VUCent current, VUCent neighbor, E e)
           
protected  void BFSForCentrality.shortestPathStep(VUCent current, VUCent neighbor, E e)
           
 

Method parameters in org.javanetworkanalyzer.alg with type arguments of type VUCent
protected  VUCent BFSForCentrality.dequeueStep(LinkedList<VUCent> queue)
          Dequeues a node from the given queue and pushes it to the stack.
 

Constructor parameters in org.javanetworkanalyzer.alg with type arguments of type VUCent
BFSForCentrality(org.jgrapht.Graph<VUCent,E> graph, Stack<VUCent> stack)
          Constructs a new BFSForCentrality object.
BFSForCentrality(org.jgrapht.Graph<VUCent,E> graph, Stack<VUCent> stack)
          Constructs a new BFSForCentrality object.
 

Uses of VUCent in org.javanetworkanalyzer.analyzers
 

Methods in org.javanetworkanalyzer.analyzers with parameters of type VUCent
protected  BFSForCentrality<E> UnweightedGraphAnalyzer.calculateShortestPathsFromNode(VUCent startNode)
          Calculates the number of shortest paths from startNode to every other node and the lengths of these paths using a Breadth-First Search (BFS), storing them in the appropriate node info of #nodeBetweenness; also updates the predecessor sets.
 

Constructor parameters in org.javanetworkanalyzer.analyzers with type arguments of type VUCent
UnweightedGraphAnalyzer(org.jgrapht.Graph<VUCent,E> graph)
          Initializes a new instance of an unweighted graph analyzer that doesn't keep track of progress.
UnweightedGraphAnalyzer(org.jgrapht.Graph<VUCent,E> graph, ProgressMonitor pm)
          Initializes a new instance of an unweighted graph analyzer with the given ProgressMonitor.
 



Copyright © 2014. All Rights Reserved.