Uses of Class
edu.uci.ics.jung.algorithms.scoring.HITS.Scores
Packages that use HITS.Scores
Package
Description
Mechanisms for assigning values (denoting significance, influence, centrality, etc.)
to graph elements based on topological properties.
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.ScoresModifier and TypeFieldDescriptionprotected 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.ScoresModifierConstructorDescriptionHITSWithPriors
(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.ScoresModifier and TypeMethodDescriptionstatic <V> com.google.common.base.Function
<V, HITS.Scores> ScoringUtils.getHITSUniformRootPrior
(Collection<V> roots) Returns a Function that hub and authority values of 1/roots.size()
to each element ofroots
.