Interface SubGraph<N,E>

Type Parameters:
N - Value type that the graph node stores.
E - Value type that the graph edge stores.

public interface SubGraph<N,E>
An interface representing a subgraph that provides adjacency calculation to a node.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addNode(N value)
    Adds the node into this subgraph.
    boolean
    Returns true if the node is a neighbor of any node in this SubGraph.
  • Method Details

    • isIndependentOf

      boolean isIndependentOf(N node)
      Returns true if the node is a neighbor of any node in this SubGraph.
    • addNode

      void addNode(N value)
      Adds the node into this subgraph.