Packages

class GraphIso extends AnyRef

The GraphIso class determines whether two labelled directed graphs are Graph Isomorphic.

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

Instance Constructors

  1. new GraphIso(g: Graph, q: Graph)

    g

    the data graph G(V, E, l)

    q

    the query graph Q(U, D, k)

Value Members

  1. def graphIsomorphic(): Boolean

    Determine whether graphs 'g' and 'q' are graph isomorphic.

    Determine whether graphs 'g' and 'q' are graph isomorphic. This is done by (1) checking that 'g' and 'q' have the same number of vertices and (2) 'q' has at least one subgraph isomorphic match in 'g'.