Uses of Class
edu.uci.ics.jung.algorithms.scoring.HITS.Scores
-
Packages that use HITS.Scores Package Description 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 Modifier and Type Field Description 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 Constructor Description HITSWithPriors(Hypergraph<V,E> g, com.google.common.base.Function<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 Modifier and Type Method Description static <V> com.google.common.base.Function<V,HITS.Scores>
ScoringUtils. getHITSUniformRootPrior(java.util.Collection<V> roots)
Returns a Function that hub and authority values of 1/roots.size()
to each element ofroots
.
-