From 6e7ac571877d185eff9688318a50b76491538105 Mon Sep 17 00:00:00 2001 From: ZigRazor Date: Wed, 6 Apr 2022 09:55:18 +0000 Subject: [PATCH 1/2] Added Roadmap to README --- README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/README.md b/README.md index 9189db2c4..3c33183f4 100644 --- a/README.md +++ b/README.md @@ -38,11 +38,48 @@ An alternative to [Boost Graph Library (BGL)](https://www.boost.org/doc/libs/1_7 If you are interested, please contact us at zigrazor@gmail.com or contribute to this project. We are waiting for you! +## Roadmap + +| Completed | Description | Date of Completition | +| :-------: | :---------- | :-------------------: | +| [X] | First Optimization | Apr 4, 2022 | +| [] | Add Benchmark for all algorithms | TBD | +| [] | Code Optimization | TBD | +| [] | Release 0.4.0 | TBD | +| [] | "Const" Code Review [#155](https://github.com/ZigRazor/CXXGraph/issues/155) | TBD | +| [] | Release 0.5.0 | TBD | +| [] | Official Site Release | TBD | +| [] | Reduction of Code Issue of Static Analysis | TBD | +| [] | First Stable Release 1.0.0 | TBD | +| [] | Markov Chain Algorithm [#107](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | +| [] | Release 1.0.1 | TBD | +| [] | FP-GraphMiner algorithm [#105](https://github.com/ZigRazor/CXXGraph/issues/105) | TBD | +| [] | Release 1.0.2 | TBD | +| [] | Tarjan's algorithm [#103](https://github.com/ZigRazor/CXXGraph/issues/103) | TBD | +| [] | Release 1.0.3 | TBD | +| [] | Graph Topological Sort [#104](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | +| [] | Release 1.1.0 | TBD | +| [] | Custom export and import [#19](https://github.com/ZigRazor/CXXGraph/issues/19) | TBD | +| [] | Input & Output file format [#172](https://github.com/ZigRazor/CXXGraph/issues/172) | TBD | +| [] | Release 1.2.0 | TBD | +| [] | Multi-Thread implementation of BFS [#121](https://github.com/ZigRazor/CXXGraph/issues/121) | TBD | +| [] | Release 1.2.1 | TBD | +| [] | Thread Safe implementations of Boruvka, Prim & Kruskal algorithm [#128](https://github.com/ZigRazor/CXXGraph/issues/128) | TBD | +| [] | Release 1.3.0 | TBD | +| [] | Edge-Cut Partition Algorithm [#183](https://github.com/ZigRazor/CXXGraph/issues/183) | TBD | +| [] | Release 1.3.1 | TBD | +| [] | WB-Libra Parttition Algorithm [#178](https://github.com/ZigRazor/CXXGraph/issues/178) | TBD | +| [] | Release 1.4.0 | TBD | +| [] | Introduce Hypergraph [#122](https://github.com/ZigRazor/CXXGraph/issues/122) | TBD | +| [] | Stable Release 2.0.0 | TBD | +| [] | TBD | TBD | + ## Table of Contents - [CXXGraph](#cxxgraph) - [Introduction](#introduction) - [We are Looking for...](#we-are-looking-for) + - [Roadmap](#roadmap) - [Table of Contents](#table-of-contents) - [Install and Uninstall](#install-and-uninstall) - [Install Linux Tarballs](#install-linux-tarballs) From 20769b03de83cab0faf10b3aab96c20d050c7212 Mon Sep 17 00:00:00 2001 From: ZigRazor Date: Wed, 6 Apr 2022 12:07:25 +0200 Subject: [PATCH 2/2] Added Emoji --- README.md | 62 +++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 3c33183f4..42cc15872 100644 --- a/README.md +++ b/README.md @@ -42,37 +42,37 @@ If you are interested, please contact us at zigrazor@gmail.com or contribute to | Completed | Description | Date of Completition | | :-------: | :---------- | :-------------------: | -| [X] | First Optimization | Apr 4, 2022 | -| [] | Add Benchmark for all algorithms | TBD | -| [] | Code Optimization | TBD | -| [] | Release 0.4.0 | TBD | -| [] | "Const" Code Review [#155](https://github.com/ZigRazor/CXXGraph/issues/155) | TBD | -| [] | Release 0.5.0 | TBD | -| [] | Official Site Release | TBD | -| [] | Reduction of Code Issue of Static Analysis | TBD | -| [] | First Stable Release 1.0.0 | TBD | -| [] | Markov Chain Algorithm [#107](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | -| [] | Release 1.0.1 | TBD | -| [] | FP-GraphMiner algorithm [#105](https://github.com/ZigRazor/CXXGraph/issues/105) | TBD | -| [] | Release 1.0.2 | TBD | -| [] | Tarjan's algorithm [#103](https://github.com/ZigRazor/CXXGraph/issues/103) | TBD | -| [] | Release 1.0.3 | TBD | -| [] | Graph Topological Sort [#104](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | -| [] | Release 1.1.0 | TBD | -| [] | Custom export and import [#19](https://github.com/ZigRazor/CXXGraph/issues/19) | TBD | -| [] | Input & Output file format [#172](https://github.com/ZigRazor/CXXGraph/issues/172) | TBD | -| [] | Release 1.2.0 | TBD | -| [] | Multi-Thread implementation of BFS [#121](https://github.com/ZigRazor/CXXGraph/issues/121) | TBD | -| [] | Release 1.2.1 | TBD | -| [] | Thread Safe implementations of Boruvka, Prim & Kruskal algorithm [#128](https://github.com/ZigRazor/CXXGraph/issues/128) | TBD | -| [] | Release 1.3.0 | TBD | -| [] | Edge-Cut Partition Algorithm [#183](https://github.com/ZigRazor/CXXGraph/issues/183) | TBD | -| [] | Release 1.3.1 | TBD | -| [] | WB-Libra Parttition Algorithm [#178](https://github.com/ZigRazor/CXXGraph/issues/178) | TBD | -| [] | Release 1.4.0 | TBD | -| [] | Introduce Hypergraph [#122](https://github.com/ZigRazor/CXXGraph/issues/122) | TBD | -| [] | Stable Release 2.0.0 | TBD | -| [] | TBD | TBD | +| :heavy_check_mark: | First Optimization | Apr 4, 2022 | +| :memo: | Add Benchmark for all algorithms | TBD | +| :memo: | Code Optimization | TBD | +| :memo: | Release 0.4.0 | TBD | +| :memo: | "Const" Code Review [#155](https://github.com/ZigRazor/CXXGraph/issues/155) | TBD | +| :memo: | Release 0.5.0 | TBD | +| :memo: | Official Site Release | TBD | +| :memo: | Reduction of Code Issue of Static Analysis | TBD | +| :memo: | First Stable Release 1.0.0 | TBD | +| :memo: | Markov Chain Algorithm [#107](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | +| :memo: | Release 1.0.1 | TBD | +| :memo: | FP-GraphMiner algorithm [#105](https://github.com/ZigRazor/CXXGraph/issues/105) | TBD | +| :memo: | Release 1.0.2 | TBD | +| :memo: | Tarjan's algorithm [#103](https://github.com/ZigRazor/CXXGraph/issues/103) | TBD | +| :memo: | Release 1.0.3 | TBD | +| :memo: | Graph Topological Sort [#104](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | +| :memo: | Release 1.1.0 | TBD | +| :memo: | Custom export and import [#19](https://github.com/ZigRazor/CXXGraph/issues/19) | TBD | +| :memo: | Input & Output file format [#172](https://github.com/ZigRazor/CXXGraph/issues/172) | TBD | +| :memo: | Release 1.2.0 | TBD | +| :memo: | Multi-Thread implementation of BFS [#121](https://github.com/ZigRazor/CXXGraph/issues/121) | TBD | +| :memo: | Release 1.2.1 | TBD | +| :memo: | Thread Safe implementations of Boruvka, Prim & Kruskal algorithm [#128](https://github.com/ZigRazor/CXXGraph/issues/128) | TBD | +| :memo: | Release 1.3.0 | TBD | +| :memo: | Edge-Cut Partition Algorithm [#183](https://github.com/ZigRazor/CXXGraph/issues/183) | TBD | +| :memo: | Release 1.3.1 | TBD | +| :memo: | WB-Libra Parttition Algorithm [#178](https://github.com/ZigRazor/CXXGraph/issues/178) | TBD | +| :memo: | Release 1.4.0 | TBD | +| :memo: | Introduce Hypergraph [#122](https://github.com/ZigRazor/CXXGraph/issues/122) | TBD | +| :memo: | Stable Release 2.0.0 | TBD | +| :memo: | TBD | TBD | ## Table of Contents