Class AggregatePairMetric<U>
java.lang.Object
es.uam.eps.ir.relison.sna.metrics.graph.aggregate.AggregatePairMetric<U>
- Type Parameters:
U
- type of the users.
- All Implemented Interfaces:
GraphMetric<U>
public class AggregatePairMetric<U> extends java.lang.Object implements GraphMetric<U>
Graph metric computed as the aggregation of an pair metric over the pairs of users in the network.
-
Field Summary
Fields Modifier and Type Field Description private PairMetric<U>
pairMetric
Pair metric. -
Constructor Summary
Constructors Constructor Description AggregatePairMetric(PairMetric<U> pairMetric)
Constructor. -
Method Summary
-
Field Details
-
pairMetric
Pair metric.
-
-
Constructor Details
-
AggregatePairMetric
Constructor.- Parameters:
pairMetric
- Pair metric.
-
-
Method Details
-
compute
Description copied from interface:GraphMetric
Computes the value.- Specified by:
compute
in interfaceGraphMetric<U>
- Parameters:
graph
- graph metric.- Returns:
- the value of the metric.
-