DiGraph

firrtl.graph.DiGraph
See theDiGraph companion class
object DiGraph

A companion to create DiGraphs from mutable data

Attributes

Companion
class
Deprecated
[Since version Chisel 7.0.0] All APIs in package firrtl are deprecated.
Source
DiGraph.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
DiGraph.type

Members list

Value members

Concrete methods

def apply[T](mdg: MutableDiGraph[T]): DiGraph[T]

Create a DiGraph from a MutableDigraph, representing the same graph

Create a DiGraph from a MutableDigraph, representing the same graph

Attributes

Source
DiGraph.scala
def apply[T](edgeData: Map[T, Set[T]]): DiGraph[T]

Create a DiGraph from a Map[T,Set[T]] of edge data

Create a DiGraph from a Map[T,Set[T]] of edge data

Attributes

Source
DiGraph.scala
def apply[T](edges: (T, T)*): DiGraph[T]

Create a DiGraph from edges

Create a DiGraph from edges

Attributes

Source
DiGraph.scala