net.walend.disentangle.graph.mutable
Members list
Concise view
Type members
Classlikes
case class MatrixLabelDigraph[Node, Label](outNodes: IndexedSet[Node], edgeMatrix: Vector[ArrayBuffer[Label]], noEdgeExistsLabel: Label) extends IndexedLabelDigraph[Node, Label] with MutableLabelDigraph[Node, Label]
Provides constant-time access and mutator for edges. Stores Nodes in a Vector and Labels in a Vector of ArrayBuffers.
Provides constant-time access and mutator for edges. Stores Nodes in a Vector and Labels in a Vector of ArrayBuffers.
The constructor is O(n)
Attributes
- Since:
v0.1.0
- Companion:
- object
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait IndexedGraph[Node]trait Digraph[Node]trait Graph[Node]class Objecttrait Matchableclass Any
object MatrixLabelDigraph
Attributes
- Companion:
- class
- Graph
- Supertypes
- trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
- MatrixLabelDigraph.type
A graph where edges can be upserted.
A graph where edges can be upserted.