axle.graph.DirectedGraphFactory

DirectedGraph

trait DirectedGraph [VP, EP] extends Graph[VP, EP]

Linear Supertypes
Graph[VP, EP], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. DirectedGraph
  2. Graph
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Type Members

  1. trait DirectedGraphEdge [P] extends GraphEdge[P]

  2. trait DirectedGraphVertex [P] extends GraphVertex[P]

  3. type E <: DirectedGraphEdge[EP]

    Attributes
    abstract
    Definition Classes
    DirectedGraphGraph
  4. trait GraphEdge [P] extends AnyRef

  5. trait GraphVertex [P] extends AnyRef

  6. type S

    Attributes
    abstract
    Definition Classes
    Graph
  7. type V <: DirectedGraphVertex[VP]

    Attributes
    abstract
    Definition Classes
    DirectedGraphGraph

Abstract Value Members

  1. def deleteEdge (e: E): Unit

    Attributes
    abstract
  2. def deleteVertex (v: V): Unit

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

    Attributes
    abstract
  4. def edge (v1: V, v2: V, ep: EP): E

    Attributes
    abstract
    Definition Classes
    Graph
  5. def edges (): Set[E]

    Attributes
    abstract
    Definition Classes
    Graph
  6. def findEdge (from: V, to: V): Option[E]

    Attributes
    abstract
  7. def isAcyclic (): Boolean

    Attributes
    abstract
  8. def isLeaf (v: V): Boolean

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

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

    Attributes
    abstract
  11. def outputEdgesOf (v: V): Set[E]

    Attributes
    abstract
  12. def precedes (v1: V, v2: V): Boolean

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

    Attributes
    abstract
  14. def removeInputs (vs: Set[V]): Unit

    Attributes
    abstract
  15. def removeOutputs (vs: Set[V]): Unit

    Attributes
    abstract
  16. def removePredecessor (v: V, predecessor: V): Unit

    Attributes
    abstract
  17. def removeSuccessor (v: V, successor: V): Unit

    Attributes
    abstract
  18. def shortestPath (source: V, goal: V): Option[List[E]]

    Attributes
    abstract
  19. def size (): Int

    Attributes
    abstract
    Definition Classes
    Graph
  20. def storage : S

    Attributes
    abstract
    Definition Classes
    Graph
  21. def successors (v: V): Set[V]

    Attributes
    abstract
  22. def vertex (vp: VP): V

    Attributes
    abstract
    Definition Classes
    Graph
  23. def vertices (): Set[V]

    Attributes
    abstract
    Definition Classes
    Graph

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 ++= (vps: Seq[VP]): Seq[V]

    Definition Classes
    Graph
  5. def += (vp: VP): V

    Definition Classes
    Graph
  6. def += (vs: (V, V), ep: EP): E

    Definition Classes
    Graph
  7. def == (arg0: AnyRef): Boolean

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

    Attributes
    final
    Definition Classes
    Any
  9. def _ancestors (v: V, result: Set[V]): Unit

  10. def _descendants (v: V, result: Set[V]): Unit

  11. def ancestors (vs: Set[V]): Set[V]

  12. def ancestors (v: V): Set[V]

  13. def asInstanceOf [T0] : T0

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def descendants (v: V): Set[V]

  16. def eq (arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Graph[VP, EP]

Inherited from AnyRef

Inherited from Any