de.sciss.synth.proc

Topology

final case class Topology[V, E <: Edge[V]](vertices: IndexedSeq[V], edges: Set[E], unpositioned: Int, edgeMap: Map[V, Set[E]]) extends Ordering[V] with Product with Serializable

Linear Supertypes
Product, Equals, Ordering[V], Serializable, Serializable, PartialOrdering[V], Equiv[V], Comparator[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Topology
  2. Product
  3. Equals
  4. Ordering
  5. Serializable
  6. Serializable
  7. PartialOrdering
  8. Equiv
  9. Comparator
  10. AnyRef
  11. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Topology(vertices: IndexedSeq[V], edges: Set[E])(unpositioned: Int, edgeMap: Map[V, Set[E]])

Type Members

  1. type T = Topology[V, E]

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addEdge(e: E): Option[(T, V, IndexedSeq[V])]

    returns

    None if the edge would violate acyclicity, otherwise the Some tuple contains the new topology, the reference vertex and the affected vertices which need to be moved with respect to the reference to reflect the new ordering. In case that the reference is the source vertex of the added edge, the affected vertices should be moved _after_ the reference and keep their internal grouping order. In case the reference is the target vertex, the affected vertices sequence is guaranteed to consist only exactly one element -- the source vertex -- which should be moved _before_ the reference

  7. def addVertex(v: V): T

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def canEqual(arg0: Any): Boolean

    Definition Classes
    Topology → Equals
  10. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def compare(a: V, b: V): Int

    Definition Classes
    Topology → Ordering → Comparator
  12. val edges: Set[E]

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    Topology → Equals → Comparator → AnyRef → Any
  15. def equiv(x: V, y: V): Boolean

    Definition Classes
    Ordering → PartialOrdering → Equiv
  16. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  18. def gt(x: V, y: V): Boolean

    Definition Classes
    Ordering → PartialOrdering
  19. def gteq(x: V, y: V): Boolean

    Definition Classes
    Ordering → PartialOrdering
  20. def hashCode(): Int

    Definition Classes
    Topology → AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def lt(x: V, y: V): Boolean

    Definition Classes
    Ordering → PartialOrdering
  23. def lteq(x: V, y: V): Boolean

    Definition Classes
    Ordering → PartialOrdering
  24. def max(x: V, y: V): V

    Definition Classes
    Ordering
  25. def min(x: V, y: V): V

    Definition Classes
    Ordering
  26. implicit def mkOrderingOps(lhs: V): Ops

    Definition Classes
    Ordering
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def on[U](f: (U) ⇒ V): Ordering[U]

    Definition Classes
    Ordering
  31. def productArity: Int

    Definition Classes
    Topology → Product
  32. def productElement(arg0: Int): Any

    Definition Classes
    Topology → Product
  33. def productIterator: Iterator[Any]

    Definition Classes
    Product
  34. def productPrefix: String

    Definition Classes
    Topology → Product
  35. def removeEdge(e: E): T

  36. def removeVertex(v: V): T

  37. def reverse: Ordering[V]

    Definition Classes
    Ordering → PartialOrdering
  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    Topology → AnyRef → Any
  40. def tryCompare(x: V, y: V): Some[Int]

    Definition Classes
    Ordering → PartialOrdering
  41. val vertices: IndexedSeq[V]

  42. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  43. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  44. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Product

Inherited from Equals

Inherited from Ordering[V]

Inherited from Serializable

Inherited from Serializable

Inherited from PartialOrdering[V]

Inherited from Equiv[V]

Inherited from Comparator[V]

Inherited from AnyRef

Inherited from Any