Interface IGraphGenerator<N,​A>

  • Type Parameters:
    N - Node type
    A - Arc type

    public interface IGraphGenerator<N,​A>
    A graph can be implicitly represented by a (set of) source node(s), called the root(s), and a function that generates the successor nodes for any given node. A graph generator provides these two functions.
    • Method Detail

      • getRootGenerator

        IRootGenerator<N> getRootGenerator()
        Returns:
        The generator for the root(s) of the graph.
      • getSuccessorGenerator

        ISuccessorGenerator<N,​A> getSuccessorGenerator()
        Returns:
        The successor node generator for the graph.