axle.graph

DirectedGraph

trait DirectedGraph [VP, EP] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. DirectedGraph
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. type ES

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

    Attributes
    abstract

Abstract Value Members

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

    Attributes
    abstract
  2. def deleteVertex (v: Vertex[VP]): G[VP, EP]

    Attributes
    abstract
  3. def descendantsIntersectsSet (v: Vertex[VP], s: Set[Vertex[VP]]): Boolean

    Attributes
    abstract
  4. def dest (edge: Edge[ES, EP]): Vertex[VP]

    Attributes
    abstract
  5. def findEdge (from: Vertex[VP], to: Vertex[VP]): Option[Edge[ES, EP]]

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

    Attributes
    abstract
  7. def isAcyclic (): Boolean

    Attributes
    abstract
  8. def isLeaf (v: Vertex[VP]): Boolean

    Attributes
    abstract
  9. def leaves (): Set[Vertex[VP]]

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

    Attributes
    abstract
  11. def outputEdgesOf (v: Vertex[VP]): Set[Edge[ES, EP]]

    Attributes
    abstract
  12. def precedes (v1: Vertex[VP], v2: Vertex[VP]): Boolean

    Attributes
    abstract
  13. def predecessors (v: Vertex[VP]): Set[Vertex[VP]]

    Attributes
    abstract
  14. def shortestPath (source: Vertex[VP], goal: Vertex[VP]): Option[List[Edge[ES, EP]]]

    Attributes
    abstract
  15. def size (): Int

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

    Attributes
    abstract
  17. def successors (v: Vertex[VP]): Set[Vertex[VP]]

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

    Attributes
    abstract

Concrete Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. def _ancestors (v: Vertex[VP], result: Set[Vertex[VP]]): Unit

  7. def _descendants (v: Vertex[VP], result: Set[Vertex[VP]]): Unit

  8. def ancestors (vs: Set[Vertex[VP]]): Set[Vertex[VP]]

  9. def ancestors (v: Vertex[VP]): Set[Vertex[VP]]

  10. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  11. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def descendants (v: Vertex[VP]): Set[Vertex[VP]]

  13. def eq (arg0: AnyRef): Boolean

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  17. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  18. def isInstanceOf [T0] : Boolean

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

    Attributes
    final
    Definition Classes
    AnyRef
  20. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  22. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  23. def toString (): String

    Definition Classes
    AnyRef → Any
  24. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any