Tuple2Digraph

net.walend.disentangle.graph.Tuple2Digraph
trait Tuple2Digraph[Node] extends Digraph[Node]

A directed graph with edges expressed as Tuple2s so that you can create edges with "a->b" in your code.

Attributes

Since:

v0.2.1

Graph
Supertypes
trait Digraph[Node]
trait Graph[Node]
class Object
trait Matchable
class Any
Known subtypes
class AdjacencyDigraph[Node]

Members list

Concise view

Type members

Inherited classlikes

Attributes

Inherited from:
Digraph
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Inherited from:
Digraph
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class InNode
class InnerNode
class InnerNode

An internal representation of edges within the graph

An internal representation of edges within the graph

Attributes

Inherited from:
Graph
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

An internal representation of nodes within the graph

An internal representation of nodes within the graph

Attributes

Inherited from:
Graph
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Types

type OuterEdgeType = (Node, Node)

The edge type used to build this graph representation

The edge type used to build this graph representation

Attributes

Inherited types

The edge type returned by this graph representation

The edge type returned by this graph representation

Attributes

Inherited from:
Digraph

The type of InnerNodeTrait for this digraph representation

The type of InnerNodeTrait for this digraph representation

Attributes

Inherited from:
Digraph

Value members

Inherited methods

def edge(from: Node, to: Node): Option[InnerEdgeType]

Attributes

Inherited from:
Digraph

Attributes

Inherited from:
Digraph
def edges: Iterable[OuterEdgeType]

Attributes

Returns:

A Traversable (usually something more specific) of the edges

Inherited from:
Graph
def innerEdges: Iterable[InnerEdgeType]

Attributes

Returns:

A Traversable of the edges as represented in the graph

Inherited from:
Graph
def innerNode(value: Node): Option[InnerNodeType]

Attributes

value

a node that might be in this digraph

Returns:

Some inner node if it exists in the digraph or None

Inherited from:
Graph

Attributes

Returns:

InnerNode representation of all of the nodes in the graph.

Inherited from:
Graph
def nodeCount: Int

Attributes

Returns:

number of nodes in the graph

Inherited from:
Graph
def nodes: Set[Node]

All the nodes in the graph

All the nodes in the graph

Attributes

Inherited from:
Graph