package pattern_matching
The pattern_matching
package contains classes, traits and objects for graph
pattern matching such as graph simulation and subgraph isomorphism.
- Alphabetic
- By Inheritance
- pattern_matching
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Package Members
Type Members
- trait Answers extends AnyRef
The
Answers
trait provides a utility for other answer objects to use. - 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
- class DualIso[TLabel] extends GraphMatcher[TLabel]
The
DualIso
class provides an implementation for Subgraph Isomorphism that uses Dual Graph Simulation for pruning. - class DualSim[TLabel] extends GraphMatcher[TLabel]
The
DualSim
class provides an implementation for Dual Graph Simulation. - class DualSim2[TLabel] extends GraphMatcher[TLabel]
The
DualSim2
class provides an implementation for Dual Graph Simulation usingGraph
and is based onDualSim22
, which differs fromDualSim2
by not using inverse adjacency sets ('pa') in order to save space. - 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 fromDualSim
by not using inverse adjacency sets ('pa') in order to save space. - class DualSimCAR[TLabel] extends GraphMatcher[TLabel]
The 'DualSimCAR' classs provides an implementation for Dual Graph Simulation with CArdinality Restrictions.
- abstract class GraphMatcher[TLabel] extends AnyRef
The
GraphMatcher
abstract class serves as a template for implementing specific algorithms for graph pattern matching. - class GraphSim[TLabel] extends GraphMatcher[TLabel]
The
GraphSim
class provides an implementation for Simple Graph Simulation. - 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 fromGraphSim2
in the parent directory in the looping order in the main for-loop and early termination when 'phi(u)' is empty. - class GraphSimCAR[TLabel] extends GraphMatcher[TLabel]
The
GraphSimCAR
class provides an implementation for Simple Graph Simulation. - class MDualIso[TLabel] extends GraphMatcher[TLabel]
The
MDualIso
class provides an implementation for Subgraph Isomorphism that uses Dual Graph Simulation for pruning. - class MDualSim[TLabel] extends GraphMatcher[TLabel]
The
MDualSim
class provides an implementation for Dual Graph Simulation. - 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 fromDualSim
by not using inverse adjacency sets ('pa') in order to save space. - 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 fromDualSim
by not using inverse adjacency sets ('pa') in order to save space. This version also supports wildcards. - 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 fromDualSim
by not using inverse adjacency sets ('pa') in order to save space. This version also supports regex. - 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.
- class MDualSimW[TLabel] extends GraphMatcher[TLabel]
The
MDualSimW
class provides an implementation for Dual Graph Simulation. - class MDualSimX[TLabel] extends GraphMatcher[TLabel]
The
MDualSimX
class provides an implementation for Dual Graph Simulation. - class MGraphSim[TLabel] extends GraphMatcher[TLabel]
The
MGraphSim
class provides an implementation for Simple Graph Simulation. - 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 fromGraphSim
in the looping order in the main for-loop and early termination when 'phi(u)' is empty. - 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 fromGraphSim
in the looping order in the main for-loop and early termination when 'phi(u)' is empty. - 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 fromGraphSim
in the looping order in the main for-loop and early termination when 'phi(u)' is empty. - class MGraphSimCAR[TLabel] extends GraphMatcher[TLabel]
The
MGraphSimCAR
class provides an implementation for Simple Graph Simulation. - class MGraphSimW[TLabel] extends GraphMatcher[TLabel]
The
MGraphSimW
class provides an implementation for Simple Graph Simulation. - class MGraphSimX[TLabel] extends GraphMatcher[TLabel]
The
MGraphSimX
class provides an implementation for Simple Graph Simulation. - 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
- 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
- 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
- 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
- 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
- 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 - object Answers_g2Test extends App with Answers
The Answers_g2Test
show the answers for 'g2'.
- 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 - object Ball
The
Ball
companion object provides functions involving Balls. - object DualIsoTest extends App
The
DualIsoTest
object is used to test theDualIso
class.The
DualIsoTest
object is used to test theDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest - object DualIsoTest2 extends App
The
DualIsoTest2
object is used to test theDualIso
class.The
DualIsoTest2
object is used to test theDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest2 - object DualIsoTest3 extends App
The
DualIsoTest3
object is used to test theDualIso
class.The
DualIsoTest3
object is used to test theDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest3 - object DualSim2CARTest extends App
The
DualSim2CARTest
object is used to test theDualSim2CAR
class.The
DualSim2CARTest
object is used to test theDualSim2CAR
class. > runMain scalation.graphalytics.DualSim2CARTest - object DualSim2CARTest2 extends App
The
DualSim2CARTest2
object is used to test theDualSim2CAR
class.The
DualSim2CARTest2
object is used to test theDualSim2CAR
class. > runMain scalation.graphalytics.DualSim2CARTest2 - object DualSim2CARTest3 extends App
The
DualSim2CARTest3
object is used to test theDualSim2CAR
class.The
DualSim2CARTest3
object is used to test theDualSim2CAR
class. > runMain scalation.graphalytics.DualSim2CARTest3 - object DualSim2Test extends App
The
DualSim2Test
object is used to test theDualSim2
class.The
DualSim2Test
object is used to test theDualSim2
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSim2Test - object DualSim2Test2 extends App
The
DualSim2Test2
object is used to test theDualSim2
class.The
DualSim2Test2
object is used to test theDualSim2
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSim2Test2 - object DualSim2Test3 extends App
The
DualSim2Test3
object is used to test theDualSim2
class.The
DualSim2Test3
object is used to test theDualSim2
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSim2Test3 - object DualSim2Test4 extends App
The
DualSim2Test4
object is used to test theDualSim2
class.The
DualSim2Test4
object is used to test theDualSim2
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSim2Test4 - object DualSim2Test5 extends App
The
DualSim2Test5
object is used to test theDualSim2
class.The
DualSim2Test5
object is used to test theDualSim2
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSim2Test5 - object DualSimCARTest extends App
The
DualSimCARTest
object is used to test theDualSimCAR
class.The
DualSimCARTest
object is used to test theDualSimCAR
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSimCARTest - object DualSimCARTest2 extends App
The
DualSimCARTest2
object is used to test theDualSimCAR
class.The
DualSimCARTest2
object is used to test theDualSimCAR
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSimCARTest2 - object DualSimCARTest3 extends App
The
DualSimCARTest3
object is used to test theDualSimCAR
class.The
DualSimCARTest3
object is used to test theDualSimCAR
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimCARTest3 - object DualSimCARTest4 extends App
The
DualSimCARTest4
object is used to test theDualSimCAR
class.The
DualSimCARTest4
object is used to test theDualSimCAR
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimCARTest4 - object DualSimCARTest5 extends App
The
DualSimCARTest5
object is used to test theDualSimCAR
class.The
DualSimCARTest5
object is used to test theDualSimCAR
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSimCARTest5 - object DualSimTest extends App
The
DualSimTest
object is used to test theDualSim
class.The
DualSimTest
object is used to test theDualSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.DualSimTest - object DualSimTest2 extends App
The
DualSimTest2
object is used to test theDualSim
class.The
DualSimTest2
object is used to test theDualSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.DualSimTest2 - object DualSimTest3 extends App
The
DualSimTest3
object is used to test theDualSim
class.The
DualSimTest3
object is used to test theDualSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimTest3 - object DualSimTest4 extends App
The
DualSimTest4
object is used to test theDualSim
class.The
DualSimTest4
object is used to test theDualSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.DualSimTest4 - object DualSimTest5 extends App
The
DualSimTest5
object is used to test theDualSim
class.The
DualSimTest5
object is used to test theDualSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.DualSimTest5 - object GraphSim2Test extends App
The
GraphSim2Test
object is used to test theGraphSim2
class.The
GraphSim2Test
object is used to test theGraphSim2
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSim2Test - object GraphSim2Test2 extends App
The
GraphSim2Test2
object is used to test theGraphSim2
class.The
GraphSim2Test2
object is used to test theGraphSim2
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSim2Test2 - object GraphSim2Test3 extends App
The
GraphSim2Test3
object is used to test theGraphSim2
class.The
GraphSim2Test3
object is used to test theGraphSim2
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSim2Test3 - object GraphSim2Test4 extends App
The
GraphSim2Test4
object is used to test theGraphSim2
class.The
GraphSim2Test4
object is used to test theGraphSim2
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSim2Test4 - object GraphSim2Test5 extends App
The
GraphSim2Test5
object is used to test theGraphSim2
class.The
GraphSim2Test5
object is used to test theGraphSim2
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSim2Test5 - object GraphSimCARTest extends App
The
GraphSimCARTest
object is used to test theGraphSimCAR
class.The
GraphSimCARTest
object is used to test theGraphSimCAR
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest - object GraphSimCARTest2 extends App
The
GraphSimCARTest2
object is used to test theGraphSimCAR
class.The
GraphSimCARTest2
object is used to test theGraphSimCAR
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest2 - object GraphSimCARTest3 extends App
The
GraphSimCARTest3
object is used to test theGraphSimCAR
class.The
GraphSimCARTest3
object is used to test theGraphSimCAR
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest3 - object GraphSimCARTest4 extends App
The
GraphSimCARTest4
object is used to test theGraphSimCAR
class.The
GraphSimCARTest4
object is used to test theGraphSimCAR
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest4 - object GraphSimCARTest5 extends App
The
GraphSimCARTest5
object is used to test theGraphSimCAR
class.The
GraphSimCARTest5
object is used to test theGraphSimCAR
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSimCARTest5 - object GraphSimTest extends App
The
GraphSimTest
object is used to test theGraphSim
class.The
GraphSimTest
object is used to test theGraphSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.GraphSimTest - object GraphSimTest2 extends App
The
GraphSimTest2
object is used to test theGraphSim
class.The
GraphSimTest2
object is used to test theGraphSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.GraphSimTest2 - object GraphSimTest3 extends App
The
GraphSimTest3
object is used to test theGraphSim
class.The
GraphSimTest3
object is used to test theGraphSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimTest3 - object GraphSimTest4 extends App
The
GraphSimTest4
object is used to test theGraphSim
class.The
GraphSimTest4
object is used to test theGraphSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.GraphSimTest4 - object GraphSimTest5 extends App
The
GraphSimTest5
object is used to test theGraphSim
class.The
GraphSimTest5
object is used to test theGraphSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.GraphSimTest5 - object LabelFunctions
The
LabelFunctions
object provides methods for obtaining child and parents labels for the corresponding data and query graphs. - 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. - object MDualIsoTest extends App
The
MDualIsoTest
object is used to test theMDualIso
class.The
MDualIsoTest
object is used to test theMDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest - object MDualIsoTest2 extends App
The
MDualIsoTest2
object is used to test theMDualIso
class.The
MDualIsoTest2
object is used to test theMDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest2 - object MDualIsoTest3 extends App
The
MDualIsoTest3
object is used to test theMDualIso
class.The
MDualIsoTest3
object is used to test theMDualIso
class. > runMain scalation.graph_db.pattern_matching.DualIsoTest3 - object MDualSim2Test extends App
The
MDualSim2Test
object is used to test theMDualSim2
class.The
MDualSim2Test
object is used to test theMDualSim2
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2Test - object MDualSim2Test2 extends App
The
MDualSim2Test2
object is used to test theMDualSim2
class.The
MDualSim2Test2
object is used to test theMDualSim2
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2Test2 - object MDualSim2Test3 extends App
The
MDualSim2Test3
object is used to test theMDualSim2
class.The
MDualSim2Test3
object is used to test theMDualSim2
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2Test3 - object MDualSim2Test4 extends App
The
MDualSim2Test4
object is used to test theMDualSim2
class.The
MDualSim2Test4
object is used to test theMDualSim2
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2Test4 - object MDualSim2Test5 extends App
The
MDualSim2Test5
object is used to test theMDualSim2
class.The
MDualSim2Test5
object is used to test theMDualSim2
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2Test5 - object MDualSim2Test6 extends App
The
MDualSim2Test6
object is used to test theMDualSim2
class.The
MDualSim2Test6
object is used to test theMDualSim2
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2Test6 - object MDualSim2WTest extends App
The
MDualSim2WTest
object is used to test theMDualSim2W
class.The
MDualSim2WTest
object is used to test theMDualSim2W
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest - object MDualSim2WTest2 extends App
The
MDualSim2WTest2
object is used to test theMDualSim2W
class.The
MDualSim2WTest2
object is used to test theMDualSim2W
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest2 - object MDualSim2WTest3 extends App
The
MDualSim2WTest3
object is used to test theMDualSim2W
class.The
MDualSim2WTest3
object is used to test theMDualSim2W
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest3 - object MDualSim2WTest4 extends App
The
MDualSim2WTest4
object is used to test theMDualSim2W
class.The
MDualSim2WTest4
object is used to test theMDualSim2W
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest4 - object MDualSim2WTest5 extends App
The
MDualSim2WTest5
object is used to test theMDualSim2W
class.The
MDualSim2WTest5
object is used to test theMDualSim2W
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest5 - object MDualSim2WTest6 extends App
The
MDualSim2WTest6
object is used to test theMDualSim2W
class.The
MDualSim2WTest6
object is used to test theMDualSim2W
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2WTest6 - object MDualSim2XTest extends App
The
MDualSim2XTest
object is used to test theMDualSim2X
class.The
MDualSim2XTest
object is used to test theMDualSim2X
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest - object MDualSim2XTest2 extends App
The
MDualSim2XTest2
object is used to test theMDualSim2X
class.The
MDualSim2XTest2
object is used to test theMDualSim2X
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest2 - object MDualSim2XTest3 extends App
The
MDualSim2XTest3
object is used to test theMDualSim2X
class.The
MDualSim2XTest3
object is used to test theMDualSim2X
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest3 - object MDualSim2XTest4 extends App
The
MDualSim2XTest4
object is used to test theMDualSim2X
class.The
MDualSim2XTest4
object is used to test theMDualSim2X
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest4 - object MDualSim2XTest5 extends App
The
MDualSim2XTest5
object is used to test theMDualSim2X
class.The
MDualSim2XTest5
object is used to test theMDualSim2X
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest5 - object MDualSim2XTest6 extends App
The
MDualSim2XTest6
object is used to test theMDualSim2X
class.The
MDualSim2XTest6
object is used to test theMDualSim2X
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSim2XTest6 - object MDualSimCARTest extends App
The
MDualSimCARTest
object is used to test theMDualSimCAR
class.The
MDualSimCARTest
object is used to test theMDualSimCAR
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest - object MDualSimCARTest2 extends App
The
MDualSimCARTest2
object is used to test theMDualSimCAR
class.The
MDualSimCARTest2
object is used to test theMDualSimCAR
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest2 - object MDualSimCARTest3 extends App
The
MDualSimCARTest3
object is used to test theMDualSimCAR
class.The
MDualSimCARTest3
object is used to test theMDualSimCAR
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest3 - object MDualSimCARTest4 extends App
The
MDualSimCARTest4
object is used to test theMDualSimCAR
class.The
MDualSimCARTest4
object is used to test theMDualSimCAR
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest4 - object MDualSimCARTest5 extends App
The
MDualSimCARTest5
object is used to test theMDualSimCAR
class.The
MDualSimCARTest5
object is used to test theMDualSimCAR
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest5 - object MDualSimCARTest6 extends App
The
MDualSimCARTest6
object is used to test theMDualSimCAR
class.The
MDualSimCARTest6
object is used to test theMDualSimCAR
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimCARTest6 - object MDualSimTest extends App
The
MDualSimTest
object is used to test theMDualSim
class.The
MDualSimTest
object is used to test theMDualSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimTest - object MDualSimTest2 extends App
The
MDualSimTest2
object is used to test theMDualSim
class.The
MDualSimTest2
object is used to test theMDualSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimTest2 - object MDualSimTest3 extends App
The
MDualSimTest3
object is used to test theMDualSim
class.The
MDualSimTest3
object is used to test theMDualSim
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimTest3 - object MDualSimTest4 extends App
The
MDualSimTest4
object is used to test theMDualSim
class.The
MDualSimTest4
object is used to test theMDualSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimTest4 - object MDualSimTest5 extends App
The
MDualSimTest5
object is used to test theMDualSim
class.The
MDualSimTest5
object is used to test theMDualSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimTest5 - object MDualSimTest6 extends App
The
MDualSimTest6
object is used to test theMDualSim
class.The
MDualSimTest6
object is used to test theMDualSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimTest6 - object MDualSimWTest extends App
The
MDualSimWTest
object is used to test theMDualSimW
class.The
MDualSimWTest
object is used to test theMDualSimW
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimWTest - object MDualSimWTest2 extends App
The
MDualSimWTest2
object is used to test theMDualSimW
class.The
MDualSimWTest2
object is used to test theMDualSimW
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimWTest2 - object MDualSimWTest3 extends App
The
MDualSimWTest3
object is used to test theMDualSimW
class.The
MDualSimWTest3
object is used to test theMDualSimW
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimWTest3 - object MDualSimWTest4 extends App
The
MDualSimWTest4
object is used to test theMDualSimW
class.The
MDualSimWTest4
object is used to test theMDualSimW
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimWTest4 - object MDualSimWTest5 extends App
The
MDualSimWTest5
object is used to test theMDualSimW
class.The
MDualSimWTest5
object is used to test theMDualSimW
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimWTest5 - object MDualSimWTest6 extends App
The
MDualSimWTest6
object is used to test theMDualSimW
class.The
MDualSimWTest6
object is used to test theMDualSimW
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimWTest6 - object MDualSimXTest extends App
The
MDualSimXTest
object is used to test theMDualSimX
class.The
MDualSimXTest
object is used to test theMDualSimX
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MDualSimXTest - object MDualSimXTest2 extends App
The
MDualSimXTest2
object is used to test theMDualSimX
class.The
MDualSimXTest2
object is used to test theMDualSimX
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MDualSimXTest2 - object MDualSimXTest3 extends App
The
MDualSimXTest3
object is used to test theMDualSimX
class.The
MDualSimXTest3
object is used to test theMDualSimX
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MDualSimXTest3 - object MDualSimXTest4 extends App
The
MDualSimXTest4
object is used to test theMDualSimX
class.The
MDualSimXTest4
object is used to test theMDualSimX
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimXTest4 - object MDualSimXTest5 extends App
The
MDualSimXTest5
object is used to test theMDualSimX
class.The
MDualSimXTest5
object is used to test theMDualSimX
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MDualSimXTest5 - object MDualSimXTest6 extends App
The
MDualSimXTest6
object is used to test theMDualSimX
class.The
MDualSimXTest6
object is used to test theMDualSimX
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MDualSimXTest6 - object MGraphSim2Test extends App
The
MGraphSim2Test
object is used to test theMGraphSim2
class.The
MGraphSim2Test
object is used to test theMGraphSim2
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test - object MGraphSim2Test2 extends App
The
MGraphSim2Test2
object is used to test theMGraphSim2
class.The
MGraphSim2Test2
object is used to test theMGraphSim2
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test2 - object MGraphSim2Test3 extends App
The
MGraphSim2Test3
object is used to test theMGraphSim2
class.The
MGraphSim2Test3
object is used to test theMGraphSim2
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test3 - object MGraphSim2Test4 extends App
The
MGraphSim2Test4
object is used to test theMGraphSim2
class.The
MGraphSim2Test4
object is used to test theMGraphSim2
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test4 - object MGraphSim2Test5 extends App
The
MGraphSim2Test5
object is used to test theMGraphSim2
class.The
MGraphSim2Test5
object is used to test theMGraphSim2
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test5 - object MGraphSim2Test6 extends App
The
MGraphSim2Test6
object is used to test theMGraphSim2
class.The
MGraphSim2Test6
object is used to test theMGraphSim2
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2Test6 - object MGraphSim2WTest extends App
The
MGraphSim2WTest
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest
object is used to test theMGraphSim2W
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest - object MGraphSim2WTest2 extends App
The
MGraphSim2WTest2
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest2
object is used to test theMGraphSim2W
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest2 - object MGraphSim2WTest3 extends App
The
MGraphSim2WTest3
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest3
object is used to test theMGraphSim2W
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest3 - object MGraphSim2WTest4 extends App
The
MGraphSim2WTest4
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest4
object is used to test theMGraphSim2W
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest4 - object MGraphSim2WTest5 extends App
The
MGraphSim2WTest5
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest5
object is used to test theMGraphSim2W
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest5 - object MGraphSim2WTest6 extends App
The
MGraphSim2WTest6
object is used to test theMGraphSim2W
class.The
MGraphSim2WTest6
object is used to test theMGraphSim2W
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2WTest6 - object MGraphSim2XTest extends App
The
MGraphSim2XTest
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest
object is used to test theMGraphSim2X
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest - object MGraphSim2XTest2 extends App
The
MGraphSim2XTest2
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest2
object is used to test theMGraphSim2X
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest2 - object MGraphSim2XTest3 extends App
The
MGraphSim2XTest3
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest3
object is used to test theMGraphSim2X
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest3 - object MGraphSim2XTest4 extends App
The
MGraphSim2XTest4
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest4
object is used to test theMGraphSim2X
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest4 - object MGraphSim2XTest5 extends App
The
MGraphSim2XTest5
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest5
object is used to test theMGraphSim2X
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest5 - object MGraphSim2XTest6 extends App
The
MGraphSim2XTest6
object is used to test theMGraphSim2X
class.The
MGraphSim2XTest6
object is used to test theMGraphSim2X
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSim2XTest6 - object MGraphSimCARTest extends App
The
MGraphSimCARTest
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest
object is used to test theMGraphSimCAR
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest - object MGraphSimCARTest2 extends App
The
MGraphSimCARTest2
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest2
object is used to test theMGraphSimCAR
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest2 - object MGraphSimCARTest3 extends App
The
MGraphSimCARTest3
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest3
object is used to test theMGraphSimCAR
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest3 - object MGraphSimCARTest4 extends App
The
MGraphSimCARTest4
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest4
object is used to test theMGraphSimCAR
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest4 - object MGraphSimCARTest5 extends App
The
MGraphSimCARTest5
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest5
object is used to test theMGraphSimCAR
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest5 - object MGraphSimCARTest6 extends App
The
MGraphSimCARTest6
object is used to test theMGraphSimCAR
class.The
MGraphSimCARTest6
object is used to test theMGraphSimCAR
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimCARTest6 - object MGraphSimTest extends App
The
MGraphSimTest
object is used to test theMGraphSim
class.The
MGraphSimTest
object is used to test theMGraphSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimTest - object MGraphSimTest2 extends App
The
MGraphSimTest2
object is used to test theMGraphSim
class.The
MGraphSimTest2
object is used to test theMGraphSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimTest2 - object MGraphSimTest3 extends App
The
MGraphSimTest3
object is used to test theMGraphSim
class.The
MGraphSimTest3
object is used to test theMGraphSim
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimTest3 - object MGraphSimTest4 extends App
The
MGraphSimTest4
object is used to test theMGraphSim
class.The
MGraphSimTest4
object is used to test theMGraphSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimTest4 - object MGraphSimTest5 extends App
The
MGraphSimTest5
object is used to test theMGraphSim
class.The
MGraphSimTest5
object is used to test theMGraphSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimTest5 - object MGraphSimTest6 extends App
The
MGraphSimTest6
object is used to test theMGraphSim
class.The
MGraphSimTest6
object is used to test theMGraphSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimTest6 - object MGraphSimWTest extends App
The
MGraphSimWTest
object is used to test theMGraphSimW
class.The
MGraphSimWTest
object is used to test theMGraphSimW
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest - object MGraphSimWTest2 extends App
The
MGraphSimWTest2
object is used to test theMGraphSimW
class.The
MGraphSimWTest2
object is used to test theMGraphSimW
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest2 - object MGraphSimWTest3 extends App
The
MGraphSimWTest3
object is used to test theMGraphSimW
class.The
MGraphSimWTest3
object is used to test theMGraphSimW
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest3 - object MGraphSimWTest4 extends App
The
MGraphSimWTest4
object is used to test theMGraphSimW
class.The
MGraphSimWTest4
object is used to test theMGraphSimW
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest4 - object MGraphSimWTest5 extends App
The
MGraphSimWTest5
object is used to test theMGraphSimW
class.The
MGraphSimWTest5
object is used to test theMGraphSimW
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest5 - object MGraphSimWTest6 extends App
The
MGraphSimWTest6
object is used to test theMGraphSimW
class.The
MGraphSimWTest6
object is used to test theMGraphSimW
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest6 - object MGraphSimWTest7 extends App
The
MGraphSimWTest7
object is used to test theMGraphSimW
class.The
MGraphSimWTest7
object is used to test theMGraphSimW
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimWTest7 - object MGraphSimXTest extends App
The
MGraphSimXTest
object is used to test theMGraphSimX
class.The
MGraphSimXTest
object is used to test theMGraphSimX
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest - object MGraphSimXTest2 extends App
The
MGraphSimXTest2
object is used to test theMGraphSimX
class.The
MGraphSimXTest2
object is used to test theMGraphSimX
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest2 - object MGraphSimXTest3 extends App
The
MGraphSimXTest3
object is used to test theMGraphSimX
class.The
MGraphSimXTest3
object is used to test theMGraphSimX
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest3 - object MGraphSimXTest4 extends App
The
MGraphSimXTest4
object is used to test theMGraphSimX
class.The
MGraphSimXTest4
object is used to test theMGraphSimX
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest4 - object MGraphSimXTest5 extends App
The
MGraphSimXTest5
object is used to test theMGraphSimX
class.The
MGraphSimXTest5
object is used to test theMGraphSimX
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest5 - object MGraphSimXTest6 extends App
The
MGraphSimXTest6
object is used to test theMGraphSimX
class.The
MGraphSimXTest6
object is used to test theMGraphSimX
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest6 - object MGraphSimXTest7 extends App
The
MGraphSimXTest7
object is used to test theMGraphSimX
class.The
MGraphSimXTest7
object is used to test theMGraphSimX
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MGraphSimXTest7 - object MStrictSimTest extends App
The
MStrictSimTest
object is used to test theMStrictSim
class.The
MStrictSimTest
object is used to test theMStrictSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MStrictSimTest - object MStrictSimTest2 extends App
The
MStrictSimTest2
object is used to test theMStrictSim
class.The
MStrictSimTest2
object is used to test theMStrictSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MStrictSimTest2 - object MStrictSimTest3 extends App
The
MStrictSimTest3
object is used to test theMStrictSim
class.The
MStrictSimTest3
object is used to test theMStrictSim
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MStrictSimTest3 - object MStrictSimTest4 extends App
The
MStrictSimTest4
object is used to test theMStrictSim
class.The
MStrictSimTest4
object is used to test theMStrictSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MStrictSimTest4 - object MStrictSimTest5 extends App
The
MStrictSimTest5
object is used to test theMStrictSim
class.The
MStrictSimTest5
object is used to test theMStrictSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MStrictSimTest5 - object MStrictSimTest6 extends App
The
MStrictSimTest6
object is used to test theMStrictSim
class.The
MStrictSimTest6
object is used to test theMStrictSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MStrictSimTest6 - object MTightSimTest extends App
The
MTightSimTest
object is used to test theMTightSim
class.The
MTightSimTest
object is used to test theMTightSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.MTightSimTest - object MTightSimTest2 extends App
The
MTightSimTest2
object is used to test theMTightSim
class.The
MTightSimTest2
object is used to test theMTightSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.MTightSimTest2 - object MTightSimTest3 extends App
The
MTightSimTest3
object is used to test theMTightSim
class.The
MTightSimTest3
object is used to test theMTightSim
class. This object tests the data graph g3 and query graph q3. > runMain scalation.graph_db.pattern_matching.MTightSimTest3 - object MTightSimTest4 extends App
The
MTightSimTest4
object is used to test theMTightSim
class.The
MTightSimTest4
object is used to test theMTightSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.MTightSimTest4 - object MTightSimTest5 extends App
The
MTightSimTest5
object is used to test theMTightSim
class.The
MTightSimTest5
object is used to test theMTightSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.MTightSimTest5 - object MTightSimTest6 extends App
The
MTightSimTest6
object is used to test theMTightSim
class.The
MTightSimTest6
object is used to test theMTightSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.MTightSimTest6 - object Query extends Serializable
The
Query
companion object provides methods that work on triples. - object QueryTest extends App
The
QueryTest
object is used to test theQuery
class.The
QueryTest
object is used to test theQuery
class. It converts a sequence of triples into a graph. > runMain scalation.graph_db.pattern_matching.QueryTest - object QueryTest2 extends App
The
QueryTest2
object is used to test theQuery
class.The
QueryTest2
object is used to test theQuery
class. It checks if variables or wildcards exist in a triple's labels. > runMain scalation.graph_db.pattern_matching.QueryTest2 - object QueryTest3 extends App
The
QueryTest3
object is used to test theQuery
class.The
QueryTest3
object is used to test theQuery
class. It converts a sequence of triples into a graph. > runMain scalation.graph_db.pattern_matching.QueryTest3 - object StrictSimTest extends App
The
StrictSimTest
object is used to test theStrictSim
class.The
StrictSimTest
object is used to test theStrictSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.StrictSimTest - object StrictSimTest2 extends App
The
StrictSimTest2
object is used to test theStrictSim
class.The
StrictSimTest2
object is used to test theStrictSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.StrictSimTest2 - object StrictSimTest3 extends App
The
StrictSimTest3
object is used to test theStrictSim
class.The
StrictSimTest3
object is used to test theStrictSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.StrictSimTest3 - object StrictSimTest4 extends App
The
StrictSimTest4
object is used to test theStrictSim
class.The
StrictSimTest4
object is used to test theStrictSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.StrictSimTest4 - object StrictSimTest5 extends App
The
StrictSimTest5
object is used to test theStrictSim
class.The
StrictSimTest5
object is used to test theStrictSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.StrictSimTest5 - object TightSimTest extends App
The
TightSimTest
object is used to test theTightSim
class.The
TightSimTest
object is used to test theTightSim
class. This object tests the data graph g1 and query graph q1. > runMain scalation.graph_db.pattern_matching.TightSimTest - object TightSimTest2 extends App
The
TightSimTest2
object is used to test theTightSim
class.The
TightSimTest2
object is used to test theTightSim
class. This object tests the data graph g2 and query graph q2. > runMain scalation.graph_db.pattern_matching.TightSimTest2 - object TightSimTest3 extends App
The
TightSimTest3
object is used to test theTightSim
class.The
TightSimTest3
object is used to test theTightSim
class. This object tests randomly (uniform) generated graphs. > runMain scalation.graph_db.pattern_matching.TightSimTest3 - object TightSimTest4 extends App
The
TightSimTest4
object is used to test theTightSim
class.The
TightSimTest4
object is used to test theTightSim
class. This object tests randomly (PowerLaw) generated graphs. > runMain scalation.graph_db.pattern_matching.TightSimTest4 - object TightSimTest5 extends App
The
TightSimTest5
object is used to test theTightSim
class.The
TightSimTest5
object is used to test theTightSim
class. This object tests graphs read from files. > runMain scalation.graph_db.pattern_matching.TightSimTest5