Trait/Object

axle.algebra

DirectedGraph

Related Docs: object DirectedGraph | package algebra

Permalink

trait DirectedGraph[DG, V, E] extends AnyRef

Annotations
@implicitNotFound( ... )
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DirectedGraph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def areNeighbors(jdg: DG, v1: V, v2: V)(implicit eqV: Eq[V]): Boolean

    Permalink
  2. abstract def connects(jdg: DG, edge: E, a1: V, a2: V)(implicit eqV: Eq[V]): Boolean

    Permalink
  3. abstract def degree(jdg: DG, v: V): Int

    Permalink
  4. abstract def descendantsIntersectsSet(jdg: DG, v: V, s: Set[V]): Boolean

    Permalink
  5. abstract def destination(jdg: DG, e: E): V

    Permalink
  6. abstract def edges(jdg: DG): Iterable[E]

    Permalink
  7. abstract def edgesTouching(jdg: DG, v: V): Set[E]

    Permalink
  8. abstract def eliminate(jdg: DG, v: V, payload: (V, V) ⇒ E): DG

    Permalink
  9. abstract def filterEdges(jdg: DG, f: (E) ⇒ Boolean): DG

    Permalink
  10. abstract def findVertex(jdg: DG, f: (V) ⇒ Boolean): Option[V]

    Permalink
  11. abstract def firstLeafOtherThan(jdg: DG, r: V)(implicit eqV: Eq[V]): Option[V]

    Permalink
  12. abstract def forceClique(jdg: DG, among: Set[V], payload: (V, V) ⇒ E)(implicit eqV: Eq[V], mV: Manifest[V]): DG

    Permalink
  13. abstract def isClique(jdg: DG, vs: Iterable[V])(implicit eqV: Eq[V]): Boolean

    Permalink
  14. abstract def isLeaf(jdg: DG, v: V): Boolean

    Permalink
  15. abstract def leaves(jdg: DG): Set[V]

    Permalink
  16. abstract def make(Vs: Seq[V], ef: Seq[(V, V, E)]): DG

    Permalink
  17. abstract def neighbors(jdg: DG, v: V): Set[V]

    Permalink
  18. abstract def other(jdg: DG, edge: E, u: V)(implicit eqV: Eq[V]): V

    Permalink
  19. abstract def outputEdgesOf(jdg: DG, v: V): Set[E]

    Permalink
  20. abstract def precedes(jdg: DG, v1: V, v2: V): Boolean

    Permalink
  21. abstract def predecessors(jdg: DG, v: V): Set[V]

    Permalink
  22. abstract def removeInputs(jdg: DG, to: Set[V]): DG

    Permalink
  23. abstract def removeOutputs(jdg: DG, from: Set[V]): DG

    Permalink
  24. abstract def shortestPath(jdg: DG, source: V, goal: V)(implicit eqV: Eq[V]): Option[List[E]]

    Permalink
  25. abstract def source(jdg: DG, e: E): V

    Permalink
  26. abstract def successors(jdg: DG, v: V): Set[V]

    Permalink
  27. abstract def vertices(jdg: DG): Iterable[V]

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def _descendants(jdg: DG, v: V, accumulator: Set[V]): Set[V]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def descendants(jdg: DG, v: V): Set[V]

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped