Class VertexLengthGridSearch<U>
java.lang.Object
es.uam.eps.ir.relison.grid.sna.vertex.VertexLengthGridSearch<U>
- Type Parameters:
U
- type of the users.
- All Implemented Interfaces:
VertexMetricGridSearch<U>
public class VertexLengthGridSearch<U> extends java.lang.Object implements VertexMetricGridSearch<U>
Grid for the lenght of a node (the sum of the weights of its edges).
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String
ORIENT
Identifier for the orientation -
Constructor Summary
Constructors Constructor Description VertexLengthGridSearch()
-
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
-
ORIENT
private static final java.lang.String ORIENTIdentifier for the orientation- See Also:
- Constant Field Values
-
-
Constructor Details
-
VertexLengthGridSearch
public VertexLengthGridSearch()
-
-
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.
-