trait DepGraph[Node] extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- DepGraph
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def addEdge(node1: Node, posNeg: PosNeg, node2: Node): DepGraph[Node]
- abstract def addNode(node: Node): DepGraph[Node]
- abstract def edgeBetween(node1: Node, node2: Node): Option[PosNeg]
- abstract def empty: DepGraph[Node]
- abstract def inEdges(node: Node): Either[String, Set[(Node, PosNeg)]]
- abstract 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
- abstract def negCycles: Set[Set[(Node, Node)]]
- abstract def nodes: Set[Node]
- abstract def outEdges(node: Node): Either[String, Set[(PosNeg, Node)]]
- abstract def showEdges(showNode: (Node) => String = x => x.toString): String
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addNegEdge(node1: Node, node2: Node): DepGraph[Node]
- def addPosEdge(node1: Node, node2: Node): DepGraph[Node]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def containsNegCycle: Boolean
- def countNegLinks(nodes: Set[(Node, Node)]): Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def oddNegCycles: Set[Set[(Node, Node)]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])