IndexedUndigraph

net.walend.disentangle.graph.IndexedUndigraph
trait IndexedUndigraph[Node] extends Undigraph[Node]

A digraph that exposes the indices of stored nodes.

Attributes

Graph
Supertypes
trait Undigraph[Node]
trait Graph[Node]
class Object
trait Matchable
class Any
Known subtypes
class AdjacencyUndigraph[Node]

Members list

Concise view

Type members

Classlikes

An internal representation of nodes within the graph

An internal representation of nodes within the graph

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class InNode

Inherited classlikes

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

Attributes

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

Attributes

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

Types

The type of InnerNodeTrait for this digraph representation

The type of InnerNodeTrait for this digraph representation

Attributes

override type OuterEdgeType = NodePair[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:
Undigraph

Value members

Abstract methods

Attributes

Returns:

internal representation of all of the nodes in the graph.

def node(i: Int): Node
def nodes: IndexedSet[Node]

All the nodes in the graph, in an indexed set

All the nodes in the graph, in an indexed set

Attributes

Inherited methods

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
def nodeCount: Int

Attributes

Returns:

number of nodes in the graph

Inherited from:
Graph