axle

graph

package graph

Visibility
  1. Public
  2. All

Type Members

  1. trait DirectedGraph [VP, EP] extends AnyRef

  2. case class Edge [S, EP] (storage: S, payloadF: (S) ⇒ EP) extends Product with Serializable

  3. case class JungDirectedGraph [VP, EP] (vps: Seq[VP], ef: (Seq[Vertex[VP]]) ⇒ Seq[(Vertex[VP], Vertex[VP], EP)]) extends DirectedGraph[VP, EP] with Product with Serializable

  4. case class JungUndirectedGraph [VP, EP] (vps: Seq[VP], ef: (Seq[Vertex[VP]]) ⇒ Seq[(Vertex[VP], Vertex[VP], EP)]) extends UndirectedGraph[VP, EP] with Product with Serializable

  5. case class NativeDirectedGraph [VP, EP] (vps: Seq[VP], ef: (Seq[Vertex[VP]]) ⇒ Seq[(Vertex[VP], Vertex[VP], EP)]) extends DirectedGraph[VP, EP] with Product with Serializable

  6. case class NativeUndirectedGraph [VP, EP] (vps: Seq[VP], ef: (Seq[Vertex[VP]]) ⇒ Seq[(Vertex[VP], Vertex[VP], EP)]) extends UndirectedGraph[VP, EP] with Product with Serializable

  7. trait UndirectedGraph [VP, EP] extends AnyRef

  8. case class Vertex [VP] (payload: VP) extends Product with Serializable