CXXGraph
CXXGraph copied to clipboard
Header-Only C++ Library for Graph Representation and Algorithms
**Is your feature request related to a problem? Please describe.** I want to use the code/lib as header only lib as in **no** dependencies or building operations. **Describe the solution...
Please consider to introduce as Input/output format also the Matrix Market (.mtx) https://math.nist.gov/MatrixMarket/formats.html
Please introduce something like spectral drawing, similar to this one https://github.com/MadduriGroup/SpectralGraphDrawing
Please introduce also Edge-Cut partition Algorithms.
Please add some good example in the Example Section. The desired is that there is the basic example of use of the library and then subsection for each algorithm. Please...
Add WB-Libra Partition Algorithm as described by this [paper](https://arxiv.org/pdf/2010.04414.pdf)
Provide a full Examples implementation.
Following the "const whenever is possible" principle, I would suggest to add this restriction to our code in places where we want our structures not to change and force them...
### Discussed in https://github.com/ZigRazor/CXXGraph/discussions/170 Originally posted by **sidml** November 2, 2021 I was thinking that we should ensure compatibility with existing popular formats for saving and loading graphs. Following is...
This can be nice issue for beginners. For reference, existing Thread safe implementations are [here](https://github.com/ZigRazor/CXXGraph/blob/master/include/Graph/Graph_TS.hpp#L343). Similar pattern can be used for adding thread Safe implementations of Boruvka, Prim & Kruskal...