sqlitegraph 3.9.0

Embedded graph database with explicit SQLite, native-v3, and combined backend modes; HNSW vector search; and graph algorithms
Documentation
1
2
3
4
5
6
7
8
mod algo;
mod graph;

pub use algo::{CycleError, Dfs, is_cyclic_directed, tarjan_scc, toposort};
pub use graph::{Direction, EdgeIndex, EdgeRef, NodeIndex, TypedDiGraph};

#[cfg(test)]
mod tests;