tsift-algorithms 0.1.67

Graph algorithms for tsift — Tarjan SCC, health scoring, dead code detection, coupling analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod coupling;
pub mod dead_code;
pub mod graph_builder;
pub mod health;
pub mod scc;

pub use coupling::{CouplingReport, ModuleCoupling, coupling_analysis};
pub use dead_code::{DeadCodeNode, DeadCodeResult, detect_dead_code};
pub use graph_builder::{Graph, build_graph, build_node_index};
pub use health::{HealthReport, HealthScore, composite_health_score};
pub use scc::{SccComponent, SccResult, tarjan_scc};