axle.graph

UndirectedGraph

trait UndirectedGraph[VP, EP] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UndirectedGraph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ES

  2. abstract type G[VP, EP] <: UndirectedGraph[VP, EP]

Abstract Value Members

  1. abstract def allEdges(): Set[Edge[ES, EP]]

  2. abstract def areNeighbors(v1: Vertex[VP], v2: Vertex[VP]): Boolean

  3. abstract def degree(v: Vertex[VP]): Int

  4. abstract def delete(v: Vertex[VP]): G[VP, EP]

  5. abstract def edgeFunction(): (Seq[Vertex[VP]]) ⇒ Seq[(Vertex[VP], Vertex[VP], EP)]

  6. abstract def edgesTouching(v: Vertex[VP]): Set[Edge[ES, EP]]

  7. abstract def eliminate(v: Vertex[VP], payload: (Vertex[VP], Vertex[VP]) ⇒ EP): G[VP, EP]

  8. abstract def findVertex(f: (Vertex[VP]) ⇒ Boolean): Option[Vertex[VP]]

  9. abstract def firstLeafOtherThan(r: Vertex[VP]): Option[Vertex[VP]]

  10. abstract def forceClique(vs: Set[Vertex[VP]], payload: (Vertex[VP], Vertex[VP]) ⇒ EP): G[VP, EP]

  11. abstract def map[NVP, NEP](vpf: (VP) ⇒ NVP, epf: (EP) ⇒ NEP)(implicit arg0: Manifest[NVP]): G[NVP, NEP]

  12. abstract def neighbors(v: Vertex[VP]): Set[Vertex[VP]]

  13. abstract def unlink(v1: Vertex[VP], v2: Vertex[VP]): G[VP, EP]

  14. abstract def unlink(e: Edge[ES, EP]): G[VP, EP]

  15. abstract def vertexPayloads(): Seq[VP]

  16. abstract def vertices(edge: Edge[ES, EP]): (Vertex[VP], Vertex[VP])

  17. abstract def vertices(): Set[Vertex[VP]]

Concrete 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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def connects(edge: Edge[ES, EP], a1: Vertex[VP], a2: Vertex[VP]): Boolean

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

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

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. def isClique(vs: GenTraversable[Vertex[VP]]): Boolean

  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  19. def numEdgesToForceClique(vs: GenTraversable[Vertex[VP]], payload: (Vertex[VP], Vertex[VP]) ⇒ EP): Int

  20. def other(edge: Edge[ES, EP], u: Vertex[VP]): Vertex[VP]

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def vertexWithFewestEdgesToEliminateAmong(among: Set[Vertex[VP]], payload: (Vertex[VP], Vertex[VP]) ⇒ EP): Vertex[VP]

  24. def vertexWithFewestNeighborsAmong(among: Set[Vertex[VP]]): Vertex[VP]

  25. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped