Interface NodeWeighting<V,E>

Type Parameters:
V - the type of nodes in the graph
E - the type of edges in the graph
All Known Implementing Classes:
NodeWeightings.LabelNodeWeighting, NodeWeightings.LinearNodeWeighting, NodeWeightings.LogNodeWeighting, NodeWeightings.TopNodeWeighting
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface NodeWeighting<V,E>
Node weighting for Chinese Whispers.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    apply(org.jgrapht.Graph<V,E> graph, Map<V,Integer> labels, V node, V neighbor)
    Compute the weight of the node in the neighborhood graph.
  • Method Details

    • apply

      double apply(org.jgrapht.Graph<V,E> graph, Map<V,Integer> labels, V node, V neighbor)
      Compute the weight of the node in the neighborhood graph.
      Parameters:
      graph - the neighborhood graph
      labels - the map of graph nodes to their labels
      node - the target node
      neighbor - the neighboring node
      Returns:
      the weight of the node in the neighborhood