//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** @author Matthew Saltz, John Miller, Ayushi Jain * @version 1.1 * @date Thu Jul 25 11:28:31 EDT 2013 * @see LICENSE (MIT style license file). */ package scalation.graphalytics // import collection.mutable.Set import scalation.util.Timer.time import GraphTypes._ //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** The `DualIso` class provides an implementation for Subgraph Isomorphism * that uses Dual Graph Simulation for pruning. * @param g the data graph G(V, E, l) * @param q the query graph Q(U, D, k) */ class DualIso (g: Graph, q: Graph) extends PatternMatcher (g, q) { private val duals = new DualSim2 (g, q) // object for Dual Simulation algorithm private var t0 = 0.0 // start time for timer private var matches = Set [Array [ISet]] () // initialize matches to empty private var noBijections = true // no results yet private var limit = 1000000 // limit on number of matches //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Set an upper bound on the number matches to allow before quiting. * @param _limit the number of matches before quiting */ def setLimit (_limit: Int) { limit = _limit } //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Apply the Dual Subgraph Isomorphism algorithm to find subgraphs of data * graph 'g' that isomorphically match query graph 'q'. These are represented * by a set of single-valued bijective functions {'psi'} where each 'psi' * function maps each query graph vertex 'u' to a data graph vertices 'v'. */ def bijections (): Set [Array [Int]] = { matches = Set [Array [ISet]] () // initialize matches to empty val phi = duals.feasibleMates () // initial mappings from label match saltzDualIso (duals.saltzDualSim (phi), 0) // recursively find all bijections val psi = simplify (matches) // pull bijections out matches noBijections = false // results now available psi // return the set of bijections } // bijections //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Apply the Dual Subgraph Isomorphism pattern matching algorithm to find * the mappings from the query graph 'q' to the data graph 'g'. These are * represented by a multi-valued function 'phi' that maps each query graph * vertex 'u' to a set of data graph vertices '{v}'. */ def mappings (): Array [ISet] = { var psi: Set [Array [Int]] = null // mappings from Dual Simulation if (noBijections) psi = bijections () // if no results, create them merge (psi) // merge bijections to create mappings } // mappings //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Return the count of the number of matches. */ def numMatches (): Int = matches.size //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Refine the mappings 'phi' using the Dual Subgraph Isomorphism algorithm. * Enumerate bijections by using an Ullmann-like recursion that uses Dual * Graph Simulation for pruning. * @param phi array of mappings from a query vertex u_q to { graph vertices v_g } * @param depth the depth of recursion */ private def saltzDualIso (phi: Array [ISet], depth: Int) { if (depth == q.size) { if (! phi.isEmpty) { matches += phi if (matches.size % CHECK == 0) println ("dualIso: matches so far = " + matches.size) } // if } else if (! phi.isEmpty) { for (i <- phi (depth) if (! contains (phi, depth, i))) { val phiCopy = phi.map (x => x) // make a copy of phi phiCopy (depth) = Set [Int] (i) // isolate vertex i if (matches.size >= limit) return // quit if at LIMIT saltzDualIso (duals.saltzDualSim (phiCopy), depth + 1) // solve recursively for the next depth } // for } // if } // saltzDualIso //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Is vertex j contained in any phi(i) for the previous depths? * @param phi array of mappings from a query vertex u_q to { graph vertices v_g } * @param depth the current depth of recursion * @param j the vertex j to check */ private def contains (phi: Array [ISet], depth: Int, j: Int): Boolean = { for (i <- 0 until depth if phi(i) contains j) return true false } // contains //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Create an array to hold matches for each vertex 'u' in the query graph * 'q' and initialize it to contain all empty sets. Then for each bijection, * add each element of the bijection to its corresponding match set. * @param psi the set of bijections */ private def merge (psi: Set [Array [Int]]): Array [ISet] = { val matches = Array.ofDim [ISet] (q.size).map (_ => Set [Int] ()) for (b <- bijections; i <- b.indices) matches(i) += b(i) matches } // merge //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** Pull the bijections out of the complete match set. * @param matches the complete match set embedding all bijections */ private def simplify (matches: Set [Array [ISet]]): Set [Array [Int]] = { matches.map (m => m.map (set => set.iterator.next)) } // simplify } // DualIso class //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: /** The `DualIsoTest` object is used to test the `DualIso` class. */ object DualIsoTest extends App { val gSize = 1000 // size of the data graph val qSize = 10 // size of the query graph val nLabels = 100 // number of distinct labels val gAvDegree = 5 // average vertex out degree for data graph val qAvDegree = 2 // average vertex out degree for query graph val g = GraphGenerator.genRandomGraph (gSize, nLabels, gAvDegree) val q = GraphGenerator.genBFSQuery (qSize, qAvDegree, g) val matcher = new DualIso (g, q) // Dual Subgraph Isomorphism Pattern Matcher for (i <- 0 until 3) { val psi = time { matcher.bijections () } // time the matcher println ("Number of Matches: " + matcher.numMatches) for (p <- psi) println (p.deep) } // for } // DualIsoTest