Skip to content
/ TCM Public

Time-Constrained Continuous Subgraph Matching Using Temporal Information for Filtering and Backtracking

License

Notifications You must be signed in to change notification settings

SNUCSE-CTA/TCM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TCM

Time-Constrained Continuous Subgraph Matching Using Temporal Information for Filtering and Backtracking

Usages

./TCM <data_graph_file> <query_graph_file> <window_size>

Experiments in the paper

  • Each script file in scripts directory reproduces the results of the experiments in the paper (Figures 6~8).
  • The results will be stored in results/<dataset_name> directory.

Datasets

Put graph files into datasets directory and querysets directory.

Input File Format

Data graph file format is a text format to store a directed temporal data graph.

  • The first line of the file should be "t # ID".
  • Following lines of "v vertex-ID vertex-label" indicate the vertices in the graph.
    • The vertices should be written in the file in ascending order of their IDs, and a vertex ID should be in [0, #vertices - 1].
  • Edges are represented as follows:
    • Following lines of "e source-ID destination-ID edge-label sec" indicate the edges in the graph.

Query graph file format is a text format to store a directed temporal query graph and constraints on timing order.

  • The first line of a graph should be "t # s ID".
  • Following lines of "v vertex-ID vertex-label" indicate the vertices in the graph.
  • Edges are represented as follows:
    • Following lines of "e source-ID destination-ID edge-label" indicate the edges in the graph.
    • The ID of the $i$-th edge in the file is $i-1$.
  • Following lines of "b edge-ID1 edge-ID2" indicate that the strict partial order edge-ID1 $\prec$ edge-ID2 holds.

About

Time-Constrained Continuous Subgraph Matching Using Temporal Information for Filtering and Backtracking

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages