From daa7768ec27dfee77918da39fca3c1c3c451de55 Mon Sep 17 00:00:00 2001 From: Keren Zhou Date: Sun, 17 Mar 2019 22:22:19 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 15f3874..4a663a6 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## Features -***gBolt*** is up to 100x faster (see detailed [experiments](https://github.com/Jokeren/gBolt/docs/experiments.md)) than [Yan's](https://www.cs.ucsb.edu/~xyan/software/gSpan.htm) original implementation with multi-threading on a single machine. ***gBolt*** also reduces more than 200 folds memory usage, running efficiently on personal computers. +***gBolt*** is up to 100x faster (see detailed [experiments](https://github.com/Jokeren/gBolt/blob/master/docs/experiments.md)) than [Yan's](https://www.cs.ucsb.edu/~xyan/software/gSpan.htm) original implementation with multi-threading on a single machine. ***gBolt*** also reduces more than 200 folds memory usage, running efficiently on personal computers. ***gBolt*** is ***fast*** because it: @@ -29,7 +29,7 @@ 1. Incorporates **C++11** emplace_back method; 2. Reconstructs a graph with frequent edges and nodes before mining; -3. Uses a customized [*Path*](https://github.com/Jokeren/gBolt/include/path.h) data structure to reuse memory in recursive procedures. +3. Uses a customized [*Path*](https://github.com/Jokeren/gBolt/blob/master/include/path.h) data structure to reuse memory in recursive procedures. ***gBolt*** is ***light-weight*** because it: @@ -38,7 +38,7 @@ ***gBolt*** is ***correct*** because: -1. We have ran [*experiments*](https://github.com/Jokeren/gBolt/docs/experiments.md) for `extern/data/Compound_422` and `extern/data/Chemical_340` with minimal support from 0.1 to 0.9. The results generated by ***gBolt*** are exactly the same as Yan's gSpan-64. +1. We have ran [*experiments*](https://github.com/Jokeren/gBolt/blob/master/docs/experiments.md) for `extern/data/Compound_422` and `extern/data/Chemical_340` with minimal support from 0.1 to 0.9. The results generated by ***gBolt*** are exactly the same as Yan's gSpan-64. ## Install