Packages

object MGraph

The MGraph companion object provides builder methods and example query multi-digraphs.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MGraph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[TLabel](tree: Tree[TLabel], name: String = "t", inverse: Boolean = false)(implicit arg0: ClassTag[TLabel]): MGraph[TLabel]

    Build an MGraph from a Tree.

    Build an MGraph from a Tree.

    tree

    the base Tree for building the MGraph

    name

    the name for the new multi-digraph

    inverse

    whether to add parent references

  2. def apply[TLabel](gr: Graph[TLabel], eLab: Map[Pair, TLabel], name: String)(implicit arg0: ClassTag[TLabel]): MGraph[TLabel]

    Build an MGraph from a Graph.

    Build an MGraph from a Graph.

    gr

    the base Graph for building the MGraph

    eLab

    the edge labels

    name

    the name for the new multi-digraph