weavatrix-graph 0.6.2

Deterministic, evidence-carrying graph core for Weavatrix repository intelligence
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod core;
mod floyd;
mod johnson;

pub use core::AllPairsShortestPaths;
pub use floyd::{floyd_warshall, floyd_warshall_filtered};
#[cfg(feature = "rayon")]
pub use johnson::johnson_all_pairs_parallel;
pub use johnson::{johnson_all_pairs, johnson_all_pairs_filtered};

use core::{cell, indexed_nodes};