Packages

p

es.weso

graph

package graph

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Direct[Edge, Node](edge: Edge, node: Node) extends Neigh[Edge, Node] with Product with Serializable

    A neighbor of a node through a direct edge

  2. case class DirectEdge[Edge](edge: Edge) extends DirectedEdge[Edge] with Product with Serializable
  3. trait DirectedEdge[Edge] extends AnyRef

    Represents directed edges

    Represents directed edges

    It can be direct or inverse

  4. trait Graph[Edge, Node] extends AnyRef

    Generic representation of graphs

  5. case class GraphMap[Edge, Node](m: Map[Node, Seq[(Edge, Node)]]) extends Graph[Edge, Node] with Product with Serializable

    Implementation of graph as a map

  6. case class Inverse[Edge, Node](edge: Edge, node: Node) extends Neigh[Edge, Node] with Product with Serializable

    A neighbor of a node through an inverse edge

  7. case class InverseEdge[Edge](edge: Edge) extends DirectedEdge[Edge] with Product with Serializable
  8. sealed trait Neigh[Edge, Node] extends AnyRef

    Represents a neighbor of a node in a graph.

    Represents a neighbor of a node in a graph. It can be a direct arc or an inverse arc

Value Members

  1. object Graph

Ungrouped