org.allenai.nlpstack.core

graph

package graph

Visibility
  1. Public
  2. All

Type Members

  1. class Bipath[T] extends AnyRef

    A representation of a path through a graph.

  2. sealed abstract class DirectedEdge[T] extends AnyRef

    an edge with a direction.

  3. sealed trait Direction extends AnyRef

    represents a direction in a graph

  4. case class DownEdge[T](edge: Edge[T]) extends DirectedEdge[T] with Product with Serializable

    an edge that is traversed in the Down direction.

  5. class Graph[T] extends AnyRef

    A graph representation where data is stored in vertices and edges are represented with adjacency lists.

  6. case class UpEdge[T](edge: Edge[T]) extends DirectedEdge[T] with Product with Serializable

    an edge that is traversed in the Up direction.

Value Members

  1. object Direction

  2. object Graph

  3. package pattern

Ungrouped