| Crates.io | samyama-graph-algorithms |
| lib.rs | samyama-graph-algorithms |
| version | 0.1.0 |
| created_at | 2026-01-24 01:53:40.254496+00 |
| updated_at | 2026-01-24 01:53:40.254496+00 |
| description | Graph algorithms (PageRank, WCC, BFS, Dijkstra) for Samyama Graph Database |
| homepage | |
| repository | https://github.com/samyama-ai/samyama-graph |
| max_upload_size | |
| id | 2065902 |
| size | 17,384 |
This crate implements standard graph algorithms for the Samyama Graph Database.
These algorithms operate on a GraphView, which is a lightweight, read-only topology view of the graph.
use samyama_graph_algorithms::{GraphView, page_rank, PageRankConfig};
// Construct view (usually done by samyama-graph adapter)
// let view = ...;
// Run PageRank
let scores = page_rank(&view, PageRankConfig::default());