Packages

c

es.weso.depgraphs

DepGraphJGraphT

case class DepGraphJGraphT[Node]() extends DepGraph[Node] with Product with Serializable

Source
DepGraphJGraphT.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, DepGraph[Node], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DepGraphJGraphT
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DepGraph
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DepGraphJGraphT()

Type Members

  1. type ES[A] = Either[String, A]
  2. case class Edge(source: Node, posNeg: PosNeg, target: Node) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addEdge(node1: Node, posNeg: PosNeg, node2: Node): DepGraph[Node]
    Definition Classes
    DepGraphJGraphTDepGraph
  5. def addNegEdge(node1: Node, node2: Node): DepGraph[Node]
    Definition Classes
    DepGraph
  6. def addNode(n: Node): DepGraph[Node]
    Definition Classes
    DepGraphJGraphTDepGraph
  7. def addPosEdge(node1: Node, node2: Node): DepGraph[Node]
    Definition Classes
    DepGraph
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  10. def containsNegCycle: Boolean
    Definition Classes
    DepGraph
  11. def countNegLinks(nodes: Set[(Node, Node)]): Int
    Definition Classes
    DepGraph
  12. def edgeBetween(node1: Node, node2: Node): Option[PosNeg]
    Definition Classes
    DepGraphJGraphTDepGraph
  13. def empty: DepGraph[Node]
    Definition Classes
    DepGraphJGraphTDepGraph
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. val graph: Graph[Node, Edge]
  17. def inEdges(node: Node): Either[String, Set[(Node, PosNeg)]]
    Definition Classes
    DepGraphJGraphTDepGraph
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isomorphicWith(other: DepGraph[Node]): Either[String, Unit]

    Checks if this graph is isomorphic with another one

    Checks if this graph is isomorphic with another one

    other

    the other dependency graph

    returns

    Left(msg) if it is not isomorphic or Right(()) if it is isomorphic

    Definition Classes
    DepGraphJGraphTDepGraph
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def negCycles: Set[Set[(Node, Node)]]
    Definition Classes
    DepGraphJGraphTDepGraph
  22. def nodes: Set[Node]
    Definition Classes
    DepGraphJGraphTDepGraph
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def oddNegCycles: Set[Set[(Node, Node)]]
    Definition Classes
    DepGraph
  26. def outEdges(node: Node): Either[String, Set[(PosNeg, Node)]]
    Definition Classes
    DepGraphJGraphTDepGraph
  27. def showEdges(showNode: (Node) ⇒ String): String
    Definition Classes
    DepGraphJGraphTDepGraph
  28. def showPosNeg(pn: PosNeg): String
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from DepGraph[Node]

Inherited from AnyRef

Inherited from Any

Ungrouped