An open API service indexing awesome lists of open source software.

https://github.com/anicolaspp/graph


https://github.com/anicolaspp/graph

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# graph

`graph` is a Connected Graph Generator tool that construct graphs of some given size. Notice that it generates all possible connected, undirected graphs of the given
size, hence there is a large number of graphs being generated. The graphs are generated by size since G(n) can be generated from some G(n - 1).

```
For Each G in [G(n-1)]:
async Add(New Node) to G
```