Class NodeBetweennessGridSearch<U>
java.lang.Object
es.uam.eps.ir.relison.grid.sna.vertex.NodeBetweennessGridSearch<U>
- Type Parameters:
U
- type of the users.
- All Implemented Interfaces:
VertexMetricGridSearch<U>
public class NodeBetweennessGridSearch<U> extends java.lang.Object implements VertexMetricGridSearch<U>
Grid for the betweenness of a node.
- See Also:
NodeBetweenness
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String
NORM
Identifier of the value indicating whether to normalize the scores of the nodes or not. -
Constructor Summary
Constructors Constructor Description NodeBetweennessGridSearch()
-
Method Summary
Modifier and Type Method Description java.util.Map<java.lang.String,VertexMetricFunction<U>>
grid(Grid grid)
Obtains the different vertex metrics to compute in a grid.java.util.Map<java.lang.String,java.util.function.Supplier<VertexMetric<U>>>
grid(Grid grid, DistanceCalculator<U> distCalc)
Obtains the different vertex metrics to compute in a grid.
-
Field Details
-
NORM
private static final java.lang.String NORMIdentifier of the value indicating whether to normalize the scores of the nodes or not.- See Also:
- Constant Field Values
-
-
Constructor Details
-
NodeBetweennessGridSearch
public NodeBetweennessGridSearch()
-
-
Method Details
-
grid
public java.util.Map<java.lang.String,java.util.function.Supplier<VertexMetric<U>>> grid(Grid grid, DistanceCalculator<U> distCalc)Description copied from interface:VertexMetricGridSearch
Obtains the different vertex metrics to compute in a grid.- Specified by:
grid
in interfaceVertexMetricGridSearch<U>
- Parameters:
grid
- The grid for the algorithmdistCalc
- A distance calculator.- Returns:
- the grid parameters.
-
grid
Description copied from interface:VertexMetricGridSearch
Obtains the different vertex metrics to compute in a grid.- Specified by:
grid
in interfaceVertexMetricGridSearch<U>
- Parameters:
grid
- The grid for the algorithm- Returns:
- the grid parameters.
-