Packages

c

es.weso.depgraphs

DepGraphJGraphT

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

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

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(classOf[java.lang.CloneNotSupportedException]) @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[_ <: AnyRef]
    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. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def negCycles: Set[Set[(Node, Node)]]
    Definition Classes
    DepGraphJGraphTDepGraph
  23. def nodes: Set[Node]
    Definition Classes
    DepGraphJGraphTDepGraph
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def oddNegCycles: Set[Set[(Node, Node)]]
    Definition Classes
    DepGraph
  27. def outEdges(node: Node): Either[String, Set[(PosNeg, Node)]]
    Definition Classes
    DepGraphJGraphTDepGraph
  28. def productElementNames: Iterator[String]
    Definition Classes
    Product
  29. def showEdges(showNode: (Node) => String): String
    Definition Classes
    DepGraphJGraphTDepGraph
  30. def showPosNeg(pn: PosNeg): String
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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 Product

Inherited from Equals

Inherited from LazyLogging

Inherited from DepGraph[Node]

Inherited from AnyRef

Inherited from Any

Ungrouped