Package cdc.graphs

Interface GraphHeavyNode<E>

Type Parameters:
E - Edge type.

public interface GraphHeavyNode<E>
Basic interface for graph heavy nodes.

A heavy node has knowledge of related edges.

Author:
Damien Carbonne
  • Method Details

    • getOutgoings

      Iterable<E> getOutgoings()
      Returns:
      The outgoing edges.
    • getIngoings

      Iterable<E> getIngoings()
      Returns:
      The ingoing edges.