Uses of Class
edu.uci.ics.jung.algorithms.scoring.HITS.Scores

Packages that use HITS.Scores
edu.uci.ics.jung.algorithms.scoring Mechanisms for assigning values (denoting significance, influence, centrality, etc.) to graph elements based on topological properties. 
edu.uci.ics.jung.algorithms.scoring.util Utility functions for assigning scores to graph elements. 
 

Uses of HITS.Scores in edu.uci.ics.jung.algorithms.scoring
 

Fields in edu.uci.ics.jung.algorithms.scoring declared as HITS.Scores
protected  HITS.Scores HITSWithPriors.disappearing_potential
          The sum of the potential, at each step, associated with vertices with no outedges (authority) or no inedges (hub).
 

Constructor parameters in edu.uci.ics.jung.algorithms.scoring with type arguments of type HITS.Scores
HITSWithPriors(Hypergraph<V,E> g, org.apache.commons.collections15.Transformer<E,? extends Number> edge_weights, org.apache.commons.collections15.Transformer<V,HITS.Scores> vertex_priors, double alpha)
          Creates an instance for the specified graph, edge weights, vertex prior probabilities, and random jump probability (alpha).
HITSWithPriors(Hypergraph<V,E> g, org.apache.commons.collections15.Transformer<V,HITS.Scores> vertex_priors, double alpha)
          Creates an instance for the specified graph, vertex priors, and random jump probability (alpha).
 

Uses of HITS.Scores in edu.uci.ics.jung.algorithms.scoring.util
 

Methods in edu.uci.ics.jung.algorithms.scoring.util that return types with arguments of type HITS.Scores
static
<V> org.apache.commons.collections15.Transformer<V,HITS.Scores>
ScoringUtils.getHITSUniformRootPrior(Collection<V> roots)
          Returns a Transformer that hub and authority values of 1/roots.size() to each element of roots.
 



Copyright © 2011. All Rights Reserved.