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.
|
Modifier and Type | Field and 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 and Description |
---|
HITSWithPriors(Hypergraph<V,E> g,
org.apache.commons.collections4.Transformer<E,? extends Number> edge_weights,
org.apache.commons.collections4.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.collections4.Transformer<V,HITS.Scores> vertex_priors,
double alpha)
Creates an instance for the specified graph, vertex priors, and random
jump probability (alpha).
|
Modifier and Type | Method and Description |
---|---|
static <V> org.apache.commons.collections4.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 © 2015. All rights reserved.