Giter VIP home page Giter VIP logo

dcq's Introduction

DCQ

Efficient Graph Isomorphism Query Processing using Degree Sequences and Color-Label Distributions

Usage

Options:

-m,   specify the mode
-f,   specify the file containing data graphs
-q,   specify the file containing query graphs

To run the program for graph isomorphism query processing:

./DCQ -m all -f [data file] -q [query file] 

To compute the average false positive ratio of each technique used in our index:

./DCQ -m filter -f [data file] -q [query file]

Running Example

./DCQ -m all -f data/amazon_D4000_d2.igraph -q query/amazon_d2.igraph
./scripts/run_amazon.sh   //a batch script for amazon
./scripts/run_hprd.sh     //a batch script for HPRD

Results

DCQ outputs indexing time and query processing time in milliseconds, and the answer file for a set of data graphs and a query set (answer.txt).

Each line of the answer file is as follows.

[query ID]: [data graph ID] [data graph ID] ...

Input File Format

The file format is a text format to store an undirected graph. A file contans a set of data graphs (or a set of query graphs).

  • The first line of the file should be "t ID #vertices" which means the start of a graph with graph id=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 range [0, #vertices - 1].
  • Following lines of "e [vertex ID] [vertex ID] 0" after the vertices indicate the undirected edges in the graph.

For example:

Line "t 1 3112" means that the start of a graph with ID=1 and #vertices=3112.
Line "v 0 1" means that there is a vertex with ID=0 and vertex-label=1 in the graph.
Line "e 1 133 0" means that there is an undirected edge between vertices with IDs 1 and 133.

Licensing

This project is provided under the Apache License 2.0.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.