Packages

p

scalation.graph_db

pattern_matching

package pattern_matching

The pattern_matching package contains classes, traits and objects for graph pattern matching such as graph simulation and subgraph isomorphism.

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

Type Members

  1. trait Answers extends AnyRef

    The Answers trait provides a utility for other answer objects to use.

  2. class Ball[TLabel] extends AnyRef

    The Ball class provides an implementation for ball construction.

    The Ball class provides an implementation for ball construction. A ball consists of all vertices within a given radius of a given center.

    See also

    ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6691601&tag=1&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6691601%26tag%3D1

  3. class DualIso[TLabel] extends GraphMatcher[TLabel]

    The DualIso class provides an implementation for Subgraph Isomorphism that uses Dual Graph Simulation for pruning.

  4. class DualSim[TLabel] extends GraphMatcher[TLabel]

    The DualSim class provides an implementation for Dual Graph Simulation.

  5. class DualSim2[TLabel] extends GraphMatcher[TLabel]

    The DualSim2 class provides an implementation for Dual Graph Simulation using Graph and is based on DualSim22, which differs from DualSim2 by not using inverse adjacency sets ('pa') in order to save space.

  6. class DualSim2CAR[TLabel] extends GraphMatcher[TLabel]

    The DualSim2 class provides a second implementation for Dual Graph Simulation.

    The DualSim2 class provides a second implementation for Dual Graph Simulation. It differs from DualSim by not using inverse adjacency sets ('pa') in order to save space.

  7. class DualSimCAR[TLabel] extends GraphMatcher[TLabel]

    The 'DualSimCAR' classs provides an implementation for Dual Graph Simulation with CArdinality Restrictions.

  8. abstract class GraphMatcher[TLabel] extends AnyRef

    The GraphMatcher abstract class serves as a template for implementing specific algorithms for graph pattern matching.

  9. class GraphSim[TLabel] extends GraphMatcher[TLabel]

    The GraphSim class provides an implementation for Simple Graph Simulation.

  10. class GraphSim2[TLabel] extends GraphMatcher[TLabel]

    The GraphSim2 class provides a second implementation for Simple Graph Simulation.

    The GraphSim2 class provides a second implementation for Simple Graph Simulation. It differ from GraphSim2 in the parent directory in the looping order in the main for-loop and early termination when 'phi(u)' is empty.

  11. class GraphSimCAR[TLabel] extends GraphMatcher[TLabel]

    The GraphSimCAR class provides an implementation for Simple Graph Simulation.

  12. class MDualIso[TLabel] extends GraphMatcher[TLabel]

    The MDualIso class provides an implementation for Subgraph Isomorphism that uses Dual Graph Simulation for pruning.

  13. class MDualSim[TLabel] extends GraphMatcher[TLabel]

    The MDualSim class provides an implementation for Dual Graph Simulation.

  14. class MDualSim2[TLabel] extends GraphMatcher[TLabel]

    The MDualSim2 class provides a second implementation for Dual Graph Simulation.

    The MDualSim2 class provides a second implementation for Dual Graph Simulation. It differs from DualSim by not using inverse adjacency sets ('pa') in order to save space.

  15. class MDualSim2W[TLabel] extends GraphMatcher[TLabel]

    The MDualSim2W class provides a second implementation for Dual Graph Simulation.

    The MDualSim2W class provides a second implementation for Dual Graph Simulation. It differs from DualSim by not using inverse adjacency sets ('pa') in order to save space. This version also supports wildcards.

  16. class MDualSim2X[TLabel] extends GraphMatcher[TLabel]

    The MDualSim2X class provides a second implementation for Dual Graph Simulation.

    The MDualSim2X class provides a second implementation for Dual Graph Simulation. It differs from DualSim by not using inverse adjacency sets ('pa') in order to save space. This version also supports regex.

  17. class MDualSimCAR[TLabel] extends GraphMatcher[TLabel]

    The 'MDualSimCAR' classs provides an implementation for Dual Graph Simulation.

    The 'MDualSimCAR' classs provides an implementation for Dual Graph Simulation. with CArdinality Restrictions.

  18. class MDualSimW[TLabel] extends GraphMatcher[TLabel]

    The MDualSimW class provides an implementation for Dual Graph Simulation.

  19. class MDualSimX[TLabel] extends GraphMatcher[TLabel]

    The MDualSimX class provides an implementation for Dual Graph Simulation.

  20. class MGraphSim[TLabel] extends GraphMatcher[TLabel]

    The MGraphSim class provides an implementation for Simple Graph Simulation.

  21. class MGraphSim2[TLabel] extends GraphMatcher[TLabel]

    The MGraphSim2 class provides a second implementation for Simple Graph Simulation.

    The MGraphSim2 class provides a second implementation for Simple Graph Simulation. It differ from GraphSim in the looping order in the main for-loop and early termination when 'phi(u)' is empty.

  22. class MGraphSim2W[TLabel] extends GraphMatcher[TLabel]

    The MGraphSim2W class provides a second implementation for Simple Graph Simulation.

    The MGraphSim2W class provides a second implementation for Simple Graph Simulation. It differ from GraphSim in the looping order in the main for-loop and early termination when 'phi(u)' is empty.

  23. class MGraphSim2X[TLabel] extends GraphMatcher[TLabel]

    The MGraphSim2X class provides a second implementation for Simple Graph Simulation.

    The MGraphSim2X class provides a second implementation for Simple Graph Simulation. It differ from GraphSim in the looping order in the main for-loop and early termination when 'phi(u)' is empty.

  24. class MGraphSimCAR[TLabel] extends GraphMatcher[TLabel]

    The MGraphSimCAR class provides an implementation for Simple Graph Simulation.

  25. class MGraphSimW[TLabel] extends GraphMatcher[TLabel]

    The MGraphSimW class provides an implementation for Simple Graph Simulation.

  26. class MGraphSimX[TLabel] extends GraphMatcher[TLabel]

    The MGraphSimX class provides an implementation for Simple Graph Simulation.

  27. class MStrictSim[TLabel] extends GraphMatcher[TLabel]

    The 'MStrictSim' class provides an implementation for strict simulation graph pattern matching.

    The 'MStrictSim' class provides an implementation for strict simulation graph pattern matching. This version uses DualSim.

    See also

    hipore.com/ijbd/2014/IJBD%20Vol%201%20No%201%202014.pdf

  28. class MTightSim[TLabel] extends GraphMatcher[TLabel]

    The 'MTightSim' class provides an implementation for tight simulation graph pattern matching.

    The 'MTightSim' class provides an implementation for tight simulation graph pattern matching. This version uses DualSim.

    See also

    hipore.com/ijbd/2014/IJBD%20Vol%201%20No%201%202014.pdf

  29. case class Query[TLabel](triples: (TLabel, TLabel, TLabel)*)(implicit evidence$1: ClassTag[TLabel]) extends Product with Serializable

    The Query class provides a means for entering queries as a sequence of triples.

    The Query class provides a means for entering queries as a sequence of triples. A triple may be viewed as (subject, predicate, object), (s, p, o) or (source vertex, edge, target vertex). Support for wildcards, regexes and variables are provided.

    triples

    the sequence of triples forming the query

  30. class StrictSim[TLabel] extends GraphMatcher[TLabel]

    The 'StrictSim' class provides an implementation for strict simulation graph pattern matching.

    The 'StrictSim' class provides an implementation for strict simulation graph pattern matching. This version uses DualSim.

    See also

    hipore.com/ijbd/2014/IJBD%20Vol%201%20No%201%202014.pdf

  31. class TightSim[TLabel] extends GraphMatcher[TLabel]

    The 'TightSim' class provides an implementation for tight simulation graph pattern matching.

    The 'TightSim' class provides an implementation for tight simulation graph pattern matching. This version uses DualSim.

    See also

    hipore.com/ijbd/2014/IJBD%20Vol%201%20No%201%202014.pdf

Value Members

  1. object Answers_g2

    The Answers_g2 object is used to test all the Graph pattern matchers on 'g2'.

    The Answers_g2 object is used to test all the Graph pattern matchers on 'g2'. 1 -> Graph Simulation 2 -> CAR Graph Simulation 3 -> MGraph Simulation 4 -> CAR MGraph Simulation 5 -> Dual Simulation 6 -> CAR Dual Simulation 7 -> MDual Simulation 8 -> CAR MDual Simulation 9 -> Strict Simulation 10 -> CAR Strict Simulation 11 -> MStrict Simulation 12 -> CAR Strict Simulation 13 -> Tight Simulation 14 -> CAR Tight Simulation 15 -> MTight Simulation 16 -> CAR MTight Simulation

  2. object Answers_g2Test extends App with Answers

    The Answers_g2Test show the answers for 'g2'.

  3. object Answers_g3

    The Answers_g3 object is used to test all the Graph pattern matchers on g3.

    The Answers_g3 object is used to test all the Graph pattern matchers on g3. 1 -> Graph Simulation 2 -> CAR Graph Simulation 3 -> MGraph Simulation 4 -> CAR MGraph Simulation 5 -> Dual Simulation 6 -> CAR Dual Simulation 7 -> MDual Simulation 8 -> CAR MDual Simulation 9 -> Strict Simulation 10 -> CAR Strict Simulation 11 -> MStrict Simulation 12 -> CAR Strict Simulation 13 -> Tight Simulation 14 -> CAR Tight Simulation 15 -> MTight Simulation 16 -> CAR MTight Simulation

  4. object Ball

    The Ball companion object provides functions involving Balls.

  5. object DualIsoTest extends App

    The DualIsoTest object is used to test the DualIso class.

    The DualIsoTest object is used to test the DualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest

  6. object DualIsoTest2 extends App

    The DualIsoTest2 object is used to test the DualIso class.

    The DualIsoTest2 object is used to test the DualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest2

  7. object DualIsoTest3 extends App

    The DualIsoTest3 object is used to test the DualIso class.

    The DualIsoTest3 object is used to test the DualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest3

  8. object DualSim2CARTest extends App

    The DualSim2CARTest object is used to test the DualSim2CAR class.

    The DualSim2CARTest object is used to test the DualSim2CAR class. > runMain scalation.graphalytics.DualSim2CARTest

  9. object DualSim2CARTest2 extends App

    The DualSim2CARTest2 object is used to test the DualSim2CAR class.

    The DualSim2CARTest2 object is used to test the DualSim2CAR class. > runMain scalation.graphalytics.DualSim2CARTest2

  10. object DualSim2CARTest3 extends App

    The DualSim2CARTest3 object is used to test the DualSim2CAR class.

    The DualSim2CARTest3 object is used to test the DualSim2CAR class. > runMain scalation.graphalytics.DualSim2CARTest3

  11. object DualSim2Test extends App

    The DualSim2Test object is used to test the DualSim2 class.

    The DualSim2Test object is used to test the DualSim2 class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSim2Test

  12. object DualSim2Test2 extends App

    The DualSim2Test2 object is used to test the DualSim2 class.

    The DualSim2Test2 object is used to test the DualSim2 class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSim2Test2

  13. object DualSim2Test3 extends App

    The DualSim2Test3 object is used to test the DualSim2 class.

    The DualSim2Test3 object is used to test the DualSim2 class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSim2Test3

  14. object DualSim2Test4 extends App

    The DualSim2Test4 object is used to test the DualSim2 class.

    The DualSim2Test4 object is used to test the DualSim2 class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSim2Test4

  15. object DualSim2Test5 extends App

    The DualSim2Test5 object is used to test the DualSim2 class.

    The DualSim2Test5 object is used to test the DualSim2 class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSim2Test5

  16. object DualSimCARTest extends App

    The DualSimCARTest object is used to test the DualSimCAR class.

    The DualSimCARTest object is used to test the DualSimCAR class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSimCARTest

  17. object DualSimCARTest2 extends App

    The DualSimCARTest2 object is used to test the DualSimCAR class.

    The DualSimCARTest2 object is used to test the DualSimCAR class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSimCARTest2

  18. object DualSimCARTest3 extends App

    The DualSimCARTest3 object is used to test the DualSimCAR class.

    The DualSimCARTest3 object is used to test the DualSimCAR class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimCARTest3

  19. object DualSimCARTest4 extends App

    The DualSimCARTest4 object is used to test the DualSimCAR class.

    The DualSimCARTest4 object is used to test the DualSimCAR class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimCARTest4

  20. object DualSimCARTest5 extends App

    The DualSimCARTest5 object is used to test the DualSimCAR class.

    The DualSimCARTest5 object is used to test the DualSimCAR class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSimCARTest5

  21. object DualSimTest extends App

    The DualSimTest object is used to test the DualSim class.

    The DualSimTest object is used to test the DualSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSimTest

  22. object DualSimTest2 extends App

    The DualSimTest2 object is used to test the DualSim class.

    The DualSimTest2 object is used to test the DualSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSimTest2

  23. object DualSimTest3 extends App

    The DualSimTest3 object is used to test the DualSim class.

    The DualSimTest3 object is used to test the DualSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimTest3

  24. object DualSimTest4 extends App

    The DualSimTest4 object is used to test the DualSim class.

    The DualSimTest4 object is used to test the DualSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimTest4

  25. object DualSimTest5 extends App

    The DualSimTest5 object is used to test the DualSim class.

    The DualSimTest5 object is used to test the DualSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSimTest5

  26. object GraphSim2Test extends App

    The GraphSim2Test object is used to test the GraphSim2 class.

    The GraphSim2Test object is used to test the GraphSim2 class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSim2Test

  27. object GraphSim2Test2 extends App

    The GraphSim2Test2 object is used to test the GraphSim2 class.

    The GraphSim2Test2 object is used to test the GraphSim2 class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSim2Test2

  28. object GraphSim2Test3 extends App

    The GraphSim2Test3 object is used to test the GraphSim2 class.

    The GraphSim2Test3 object is used to test the GraphSim2 class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSim2Test3

  29. object GraphSim2Test4 extends App

    The GraphSim2Test4 object is used to test the GraphSim2 class.

    The GraphSim2Test4 object is used to test the GraphSim2 class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSim2Test4

  30. object GraphSim2Test5 extends App

    The GraphSim2Test5 object is used to test the GraphSim2 class.

    The GraphSim2Test5 object is used to test the GraphSim2 class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSim2Test5

  31. object GraphSimCARTest extends App

    The GraphSimCARTest object is used to test the GraphSimCAR class.

    The GraphSimCARTest object is used to test the GraphSimCAR class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest

  32. object GraphSimCARTest2 extends App

    The GraphSimCARTest2 object is used to test the GraphSimCAR class.

    The GraphSimCARTest2 object is used to test the GraphSimCAR class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest2

  33. object GraphSimCARTest3 extends App

    The GraphSimCARTest3 object is used to test the GraphSimCAR class.

    The GraphSimCARTest3 object is used to test the GraphSimCAR class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest3

  34. object GraphSimCARTest4 extends App

    The GraphSimCARTest4 object is used to test the GraphSimCAR class.

    The GraphSimCARTest4 object is used to test the GraphSimCAR class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest4

  35. object GraphSimCARTest5 extends App

    The GraphSimCARTest5 object is used to test the GraphSimCAR class.

    The GraphSimCARTest5 object is used to test the GraphSimCAR class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest5

  36. object GraphSimTest extends App

    The GraphSimTest object is used to test the GraphSim class.

    The GraphSimTest object is used to test the GraphSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSimTest

  37. object GraphSimTest2 extends App

    The GraphSimTest2 object is used to test the GraphSim class.

    The GraphSimTest2 object is used to test the GraphSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSimTest2

  38. object GraphSimTest3 extends App

    The GraphSimTest3 object is used to test the GraphSim class.

    The GraphSimTest3 object is used to test the GraphSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimTest3

  39. object GraphSimTest4 extends App

    The GraphSimTest4 object is used to test the GraphSim class.

    The GraphSimTest4 object is used to test the GraphSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimTest4

  40. object GraphSimTest5 extends App

    The GraphSimTest5 object is used to test the GraphSim class.

    The GraphSimTest5 object is used to test the GraphSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSimTest5

  41. object LabelFunctions

    The LabelFunctions object provides methods for obtaining child and parents labels for the corresponding data and query graphs.

  42. object LabelVer extends Enumeration

    The LabelVersion object provides a method for determining which of three versions of pattern matching (Normal, Wildcard, or Regular expression) is applicable.

  43. object MDualIsoTest extends App

    The MDualIsoTest object is used to test the MDualIso class.

    The MDualIsoTest object is used to test the MDualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest

  44. object MDualIsoTest2 extends App

    The MDualIsoTest2 object is used to test the MDualIso class.

    The MDualIsoTest2 object is used to test the MDualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest2

  45. object MDualIsoTest3 extends App

    The MDualIsoTest3 object is used to test the MDualIso class.

    The MDualIsoTest3 object is used to test the MDualIso class. > runMain scalation.graph_db.pattern_matching.DualIsoTest3

  46. object MDualSim2Test extends App

    The MDualSim2Test object is used to test the MDualSim2 class.

    The MDualSim2Test object is used to test the MDualSim2 class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2Test

  47. object MDualSim2Test2 extends App

    The MDualSim2Test2 object is used to test the MDualSim2 class.

    The MDualSim2Test2 object is used to test the MDualSim2 class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2Test2

  48. object MDualSim2Test3 extends App

    The MDualSim2Test3 object is used to test the MDualSim2 class.

    The MDualSim2Test3 object is used to test the MDualSim2 class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2Test3

  49. object MDualSim2Test4 extends App

    The MDualSim2Test4 object is used to test the MDualSim2 class.

    The MDualSim2Test4 object is used to test the MDualSim2 class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2Test4

  50. object MDualSim2Test5 extends App

    The MDualSim2Test5 object is used to test the MDualSim2 class.

    The MDualSim2Test5 object is used to test the MDualSim2 class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2Test5

  51. object MDualSim2Test6 extends App

    The MDualSim2Test6 object is used to test the MDualSim2 class.

    The MDualSim2Test6 object is used to test the MDualSim2 class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2Test6

  52. object MDualSim2WTest extends App

    The MDualSim2WTest object is used to test the MDualSim2W class.

    The MDualSim2WTest object is used to test the MDualSim2W class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest

  53. object MDualSim2WTest2 extends App

    The MDualSim2WTest2 object is used to test the MDualSim2W class.

    The MDualSim2WTest2 object is used to test the MDualSim2W class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest2

  54. object MDualSim2WTest3 extends App

    The MDualSim2WTest3 object is used to test the MDualSim2W class.

    The MDualSim2WTest3 object is used to test the MDualSim2W class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest3

  55. object MDualSim2WTest4 extends App

    The MDualSim2WTest4 object is used to test the MDualSim2W class.

    The MDualSim2WTest4 object is used to test the MDualSim2W class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest4

  56. object MDualSim2WTest5 extends App

    The MDualSim2WTest5 object is used to test the MDualSim2W class.

    The MDualSim2WTest5 object is used to test the MDualSim2W class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest5

  57. object MDualSim2WTest6 extends App

    The MDualSim2WTest6 object is used to test the MDualSim2W class.

    The MDualSim2WTest6 object is used to test the MDualSim2W class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest6

  58. object MDualSim2XTest extends App

    The MDualSim2XTest object is used to test the MDualSim2X class.

    The MDualSim2XTest object is used to test the MDualSim2X class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest

  59. object MDualSim2XTest2 extends App

    The MDualSim2XTest2 object is used to test the MDualSim2X class.

    The MDualSim2XTest2 object is used to test the MDualSim2X class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest2

  60. object MDualSim2XTest3 extends App

    The MDualSim2XTest3 object is used to test the MDualSim2X class.

    The MDualSim2XTest3 object is used to test the MDualSim2X class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest3

  61. object MDualSim2XTest4 extends App

    The MDualSim2XTest4 object is used to test the MDualSim2X class.

    The MDualSim2XTest4 object is used to test the MDualSim2X class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest4

  62. object MDualSim2XTest5 extends App

    The MDualSim2XTest5 object is used to test the MDualSim2X class.

    The MDualSim2XTest5 object is used to test the MDualSim2X class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest5

  63. object MDualSim2XTest6 extends App

    The MDualSim2XTest6 object is used to test the MDualSim2X class.

    The MDualSim2XTest6 object is used to test the MDualSim2X class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest6

  64. object MDualSimCARTest extends App

    The MDualSimCARTest object is used to test the MDualSimCAR class.

    The MDualSimCARTest object is used to test the MDualSimCAR class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest

  65. object MDualSimCARTest2 extends App

    The MDualSimCARTest2 object is used to test the MDualSimCAR class.

    The MDualSimCARTest2 object is used to test the MDualSimCAR class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest2

  66. object MDualSimCARTest3 extends App

    The MDualSimCARTest3 object is used to test the MDualSimCAR class.

    The MDualSimCARTest3 object is used to test the MDualSimCAR class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest3

  67. object MDualSimCARTest4 extends App

    The MDualSimCARTest4 object is used to test the MDualSimCAR class.

    The MDualSimCARTest4 object is used to test the MDualSimCAR class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest4

  68. object MDualSimCARTest5 extends App

    The MDualSimCARTest5 object is used to test the MDualSimCAR class.

    The MDualSimCARTest5 object is used to test the MDualSimCAR class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest5

  69. object MDualSimCARTest6 extends App

    The MDualSimCARTest6 object is used to test the MDualSimCAR class.

    The MDualSimCARTest6 object is used to test the MDualSimCAR class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest6

  70. object MDualSimTest extends App

    The MDualSimTest object is used to test the MDualSim class.

    The MDualSimTest object is used to test the MDualSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimTest

  71. object MDualSimTest2 extends App

    The MDualSimTest2 object is used to test the MDualSim class.

    The MDualSimTest2 object is used to test the MDualSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimTest2

  72. object MDualSimTest3 extends App

    The MDualSimTest3 object is used to test the MDualSim class.

    The MDualSimTest3 object is used to test the MDualSim class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimTest3

  73. object MDualSimTest4 extends App

    The MDualSimTest4 object is used to test the MDualSim class.

    The MDualSimTest4 object is used to test the MDualSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimTest4

  74. object MDualSimTest5 extends App

    The MDualSimTest5 object is used to test the MDualSim class.

    The MDualSimTest5 object is used to test the MDualSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimTest5

  75. object MDualSimTest6 extends App

    The MDualSimTest6 object is used to test the MDualSim class.

    The MDualSimTest6 object is used to test the MDualSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimTest6

  76. object MDualSimWTest extends App

    The MDualSimWTest object is used to test the MDualSimW class.

    The MDualSimWTest object is used to test the MDualSimW class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimWTest

  77. object MDualSimWTest2 extends App

    The MDualSimWTest2 object is used to test the MDualSimW class.

    The MDualSimWTest2 object is used to test the MDualSimW class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimWTest2

  78. object MDualSimWTest3 extends App

    The MDualSimWTest3 object is used to test the MDualSimW class.

    The MDualSimWTest3 object is used to test the MDualSimW class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimWTest3

  79. object MDualSimWTest4 extends App

    The MDualSimWTest4 object is used to test the MDualSimW class.

    The MDualSimWTest4 object is used to test the MDualSimW class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimWTest4

  80. object MDualSimWTest5 extends App

    The MDualSimWTest5 object is used to test the MDualSimW class.

    The MDualSimWTest5 object is used to test the MDualSimW class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimWTest5

  81. object MDualSimWTest6 extends App

    The MDualSimWTest6 object is used to test the MDualSimW class.

    The MDualSimWTest6 object is used to test the MDualSimW class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimWTest6

  82. object MDualSimXTest extends App

    The MDualSimXTest object is used to test the MDualSimX class.

    The MDualSimXTest object is used to test the MDualSimX class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimXTest

  83. object MDualSimXTest2 extends App

    The MDualSimXTest2 object is used to test the MDualSimX class.

    The MDualSimXTest2 object is used to test the MDualSimX class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimXTest2

  84. object MDualSimXTest3 extends App

    The MDualSimXTest3 object is used to test the MDualSimX class.

    The MDualSimXTest3 object is used to test the MDualSimX class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimXTest3

  85. object MDualSimXTest4 extends App

    The MDualSimXTest4 object is used to test the MDualSimX class.

    The MDualSimXTest4 object is used to test the MDualSimX class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimXTest4

  86. object MDualSimXTest5 extends App

    The MDualSimXTest5 object is used to test the MDualSimX class.

    The MDualSimXTest5 object is used to test the MDualSimX class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimXTest5

  87. object MDualSimXTest6 extends App

    The MDualSimXTest6 object is used to test the MDualSimX class.

    The MDualSimXTest6 object is used to test the MDualSimX class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimXTest6

  88. object MGraphSim2Test extends App

    The MGraphSim2Test object is used to test the MGraphSim2 class.

    The MGraphSim2Test object is used to test the MGraphSim2 class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test

  89. object MGraphSim2Test2 extends App

    The MGraphSim2Test2 object is used to test the MGraphSim2 class.

    The MGraphSim2Test2 object is used to test the MGraphSim2 class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test2

  90. object MGraphSim2Test3 extends App

    The MGraphSim2Test3 object is used to test the MGraphSim2 class.

    The MGraphSim2Test3 object is used to test the MGraphSim2 class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test3

  91. object MGraphSim2Test4 extends App

    The MGraphSim2Test4 object is used to test the MGraphSim2 class.

    The MGraphSim2Test4 object is used to test the MGraphSim2 class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test4

  92. object MGraphSim2Test5 extends App

    The MGraphSim2Test5 object is used to test the MGraphSim2 class.

    The MGraphSim2Test5 object is used to test the MGraphSim2 class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test5

  93. object MGraphSim2Test6 extends App

    The MGraphSim2Test6 object is used to test the MGraphSim2 class.

    The MGraphSim2Test6 object is used to test the MGraphSim2 class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test6

  94. object MGraphSim2WTest extends App

    The MGraphSim2WTest object is used to test the MGraphSim2W class.

    The MGraphSim2WTest object is used to test the MGraphSim2W class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest

  95. object MGraphSim2WTest2 extends App

    The MGraphSim2WTest2 object is used to test the MGraphSim2W class.

    The MGraphSim2WTest2 object is used to test the MGraphSim2W class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest2

  96. object MGraphSim2WTest3 extends App

    The MGraphSim2WTest3 object is used to test the MGraphSim2W class.

    The MGraphSim2WTest3 object is used to test the MGraphSim2W class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest3

  97. object MGraphSim2WTest4 extends App

    The MGraphSim2WTest4 object is used to test the MGraphSim2W class.

    The MGraphSim2WTest4 object is used to test the MGraphSim2W class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest4

  98. object MGraphSim2WTest5 extends App

    The MGraphSim2WTest5 object is used to test the MGraphSim2W class.

    The MGraphSim2WTest5 object is used to test the MGraphSim2W class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest5

  99. object MGraphSim2WTest6 extends App

    The MGraphSim2WTest6 object is used to test the MGraphSim2W class.

    The MGraphSim2WTest6 object is used to test the MGraphSim2W class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest6

  100. object MGraphSim2XTest extends App

    The MGraphSim2XTest object is used to test the MGraphSim2X class.

    The MGraphSim2XTest object is used to test the MGraphSim2X class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest

  101. object MGraphSim2XTest2 extends App

    The MGraphSim2XTest2 object is used to test the MGraphSim2X class.

    The MGraphSim2XTest2 object is used to test the MGraphSim2X class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest2

  102. object MGraphSim2XTest3 extends App

    The MGraphSim2XTest3 object is used to test the MGraphSim2X class.

    The MGraphSim2XTest3 object is used to test the MGraphSim2X class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest3

  103. object MGraphSim2XTest4 extends App

    The MGraphSim2XTest4 object is used to test the MGraphSim2X class.

    The MGraphSim2XTest4 object is used to test the MGraphSim2X class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest4

  104. object MGraphSim2XTest5 extends App

    The MGraphSim2XTest5 object is used to test the MGraphSim2X class.

    The MGraphSim2XTest5 object is used to test the MGraphSim2X class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest5

  105. object MGraphSim2XTest6 extends App

    The MGraphSim2XTest6 object is used to test the MGraphSim2X class.

    The MGraphSim2XTest6 object is used to test the MGraphSim2X class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest6

  106. object MGraphSimCARTest extends App

    The MGraphSimCARTest object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest object is used to test the MGraphSimCAR class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest

  107. object MGraphSimCARTest2 extends App

    The MGraphSimCARTest2 object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest2 object is used to test the MGraphSimCAR class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest2

  108. object MGraphSimCARTest3 extends App

    The MGraphSimCARTest3 object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest3 object is used to test the MGraphSimCAR class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest3

  109. object MGraphSimCARTest4 extends App

    The MGraphSimCARTest4 object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest4 object is used to test the MGraphSimCAR class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest4

  110. object MGraphSimCARTest5 extends App

    The MGraphSimCARTest5 object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest5 object is used to test the MGraphSimCAR class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest5

  111. object MGraphSimCARTest6 extends App

    The MGraphSimCARTest6 object is used to test the MGraphSimCAR class.

    The MGraphSimCARTest6 object is used to test the MGraphSimCAR class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest6

  112. object MGraphSimTest extends App

    The MGraphSimTest object is used to test the MGraphSim class.

    The MGraphSimTest object is used to test the MGraphSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimTest

  113. object MGraphSimTest2 extends App

    The MGraphSimTest2 object is used to test the MGraphSim class.

    The MGraphSimTest2 object is used to test the MGraphSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimTest2

  114. object MGraphSimTest3 extends App

    The MGraphSimTest3 object is used to test the MGraphSim class.

    The MGraphSimTest3 object is used to test the MGraphSim class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimTest3

  115. object MGraphSimTest4 extends App

    The MGraphSimTest4 object is used to test the MGraphSim class.

    The MGraphSimTest4 object is used to test the MGraphSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimTest4

  116. object MGraphSimTest5 extends App

    The MGraphSimTest5 object is used to test the MGraphSim class.

    The MGraphSimTest5 object is used to test the MGraphSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimTest5

  117. object MGraphSimTest6 extends App

    The MGraphSimTest6 object is used to test the MGraphSim class.

    The MGraphSimTest6 object is used to test the MGraphSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimTest6

  118. object MGraphSimWTest extends App

    The MGraphSimWTest object is used to test the MGraphSimW class.

    The MGraphSimWTest object is used to test the MGraphSimW class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest

  119. object MGraphSimWTest2 extends App

    The MGraphSimWTest2 object is used to test the MGraphSimW class.

    The MGraphSimWTest2 object is used to test the MGraphSimW class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest2

  120. object MGraphSimWTest3 extends App

    The MGraphSimWTest3 object is used to test the MGraphSimW class.

    The MGraphSimWTest3 object is used to test the MGraphSimW class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest3

  121. object MGraphSimWTest4 extends App

    The MGraphSimWTest4 object is used to test the MGraphSimW class.

    The MGraphSimWTest4 object is used to test the MGraphSimW class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest4

  122. object MGraphSimWTest5 extends App

    The MGraphSimWTest5 object is used to test the MGraphSimW class.

    The MGraphSimWTest5 object is used to test the MGraphSimW class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest5

  123. object MGraphSimWTest6 extends App

    The MGraphSimWTest6 object is used to test the MGraphSimW class.

    The MGraphSimWTest6 object is used to test the MGraphSimW class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest6

  124. object MGraphSimWTest7 extends App

    The MGraphSimWTest7 object is used to test the MGraphSimW class.

    The MGraphSimWTest7 object is used to test the MGraphSimW class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest7

  125. object MGraphSimXTest extends App

    The MGraphSimXTest object is used to test the MGraphSimX class.

    The MGraphSimXTest object is used to test the MGraphSimX class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest

  126. object MGraphSimXTest2 extends App

    The MGraphSimXTest2 object is used to test the MGraphSimX class.

    The MGraphSimXTest2 object is used to test the MGraphSimX class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest2

  127. object MGraphSimXTest3 extends App

    The MGraphSimXTest3 object is used to test the MGraphSimX class.

    The MGraphSimXTest3 object is used to test the MGraphSimX class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest3

  128. object MGraphSimXTest4 extends App

    The MGraphSimXTest4 object is used to test the MGraphSimX class.

    The MGraphSimXTest4 object is used to test the MGraphSimX class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest4

  129. object MGraphSimXTest5 extends App

    The MGraphSimXTest5 object is used to test the MGraphSimX class.

    The MGraphSimXTest5 object is used to test the MGraphSimX class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest5

  130. object MGraphSimXTest6 extends App

    The MGraphSimXTest6 object is used to test the MGraphSimX class.

    The MGraphSimXTest6 object is used to test the MGraphSimX class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest6

  131. object MGraphSimXTest7 extends App

    The MGraphSimXTest7 object is used to test the MGraphSimX class.

    The MGraphSimXTest7 object is used to test the MGraphSimX class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest7

  132. object MStrictSimTest extends App

    The MStrictSimTest object is used to test the MStrictSim class.

    The MStrictSimTest object is used to test the MStrictSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MStrictSimTest

  133. object MStrictSimTest2 extends App

    The MStrictSimTest2 object is used to test the MStrictSim class.

    The MStrictSimTest2 object is used to test the MStrictSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MStrictSimTest2

  134. object MStrictSimTest3 extends App

    The MStrictSimTest3 object is used to test the MStrictSim class.

    The MStrictSimTest3 object is used to test the MStrictSim class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MStrictSimTest3

  135. object MStrictSimTest4 extends App

    The MStrictSimTest4 object is used to test the MStrictSim class.

    The MStrictSimTest4 object is used to test the MStrictSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MStrictSimTest4

  136. object MStrictSimTest5 extends App

    The MStrictSimTest5 object is used to test the MStrictSim class.

    The MStrictSimTest5 object is used to test the MStrictSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MStrictSimTest5

  137. object MStrictSimTest6 extends App

    The MStrictSimTest6 object is used to test the MStrictSim class.

    The MStrictSimTest6 object is used to test the MStrictSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MStrictSimTest6

  138. object MTightSimTest extends App

    The MTightSimTest object is used to test the MTightSim class.

    The MTightSimTest object is used to test the MTightSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MTightSimTest

  139. object MTightSimTest2 extends App

    The MTightSimTest2 object is used to test the MTightSim class.

    The MTightSimTest2 object is used to test the MTightSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MTightSimTest2

  140. object MTightSimTest3 extends App

    The MTightSimTest3 object is used to test the MTightSim class.

    The MTightSimTest3 object is used to test the MTightSim class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MTightSimTest3

  141. object MTightSimTest4 extends App

    The MTightSimTest4 object is used to test the MTightSim class.

    The MTightSimTest4 object is used to test the MTightSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MTightSimTest4

  142. object MTightSimTest5 extends App

    The MTightSimTest5 object is used to test the MTightSim class.

    The MTightSimTest5 object is used to test the MTightSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MTightSimTest5

  143. object MTightSimTest6 extends App

    The MTightSimTest6 object is used to test the MTightSim class.

    The MTightSimTest6 object is used to test the MTightSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MTightSimTest6

  144. object Query extends Serializable

    The Query companion object provides methods that work on triples.

  145. object QueryTest extends App

    The QueryTest object is used to test the Query class.

    The QueryTest object is used to test the Query class. It converts a sequence of triples into a graph. > runMain scalation.graph_db.pattern_matching.QueryTest

  146. object QueryTest2 extends App

    The QueryTest2 object is used to test the Query class.

    The QueryTest2 object is used to test the Query class. It checks if variables or wildcards exist in a triple's labels. > runMain scalation.graph_db.pattern_matching.QueryTest2

  147. object QueryTest3 extends App

    The QueryTest3 object is used to test the Query class.

    The QueryTest3 object is used to test the Query class. It converts a sequence of triples into a graph. > runMain scalation.graph_db.pattern_matching.QueryTest3

  148. object StrictSimTest extends App

    The StrictSimTest object is used to test the StrictSim class.

    The StrictSimTest object is used to test the StrictSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.StrictSimTest

  149. object StrictSimTest2 extends App

    The StrictSimTest2 object is used to test the StrictSim class.

    The StrictSimTest2 object is used to test the StrictSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.StrictSimTest2

  150. object StrictSimTest3 extends App

    The StrictSimTest3 object is used to test the StrictSim class.

    The StrictSimTest3 object is used to test the StrictSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.StrictSimTest3

  151. object StrictSimTest4 extends App

    The StrictSimTest4 object is used to test the StrictSim class.

    The StrictSimTest4 object is used to test the StrictSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.StrictSimTest4

  152. object StrictSimTest5 extends App

    The StrictSimTest5 object is used to test the StrictSim class.

    The StrictSimTest5 object is used to test the StrictSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.StrictSimTest5

  153. object TightSimTest extends App

    The TightSimTest object is used to test the TightSim class.

    The TightSimTest object is used to test the TightSim class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.TightSimTest

  154. object TightSimTest2 extends App

    The TightSimTest2 object is used to test the TightSim class.

    The TightSimTest2 object is used to test the TightSim class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.TightSimTest2

  155. object TightSimTest3 extends App

    The TightSimTest3 object is used to test the TightSim class.

    The TightSimTest3 object is used to test the TightSim class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.TightSimTest3

  156. object TightSimTest4 extends App

    The TightSimTest4 object is used to test the TightSim class.

    The TightSimTest4 object is used to test the TightSim class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.TightSimTest4

  157. object TightSimTest5 extends App

    The TightSimTest5 object is used to test the TightSim class.

    The TightSimTest5 object is used to test the TightSim class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.TightSimTest5

Inherited from AnyRef

Inherited from Any

Ungrouped