https://github.com/anicolaspp/graph
https://github.com/anicolaspp/graph
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anicolaspp/graph
- Owner: anicolaspp
- Created: 2021-10-28T04:56:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-05T05:43:27.000Z (over 4 years ago)
- Last Synced: 2025-03-06T03:14:46.545Z (over 1 year ago)
- Language: Go
- Size: 2.94 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```