https://github.com/frontmage/rustg
Rust based graph algorithms
https://github.com/frontmage/rustg
Last synced: 11 months ago
JSON representation
Rust based graph algorithms
- Host: GitHub
- URL: https://github.com/frontmage/rustg
- Owner: FrontMage
- Created: 2018-12-19T08:48:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T09:04:21.000Z (over 7 years ago)
- Last Synced: 2025-03-30T15:13:43.337Z (about 1 year ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## rustg
Rust based graph alogorithms, featured with `rayon` for better performance.
- [x] dijkstra shortest path
- [x] degree centrality
- [ ] A star shortest path
- [ ] pagerank centrality
- [ ] community detection
### Install
```bash
# TODO: crates.io
```
### Usage
```rust
// TODO: make usage example
```