Skip to main content

tsift_algorithms/
lib.rs

1pub mod coupling;
2pub mod dead_code;
3pub mod graph_builder;
4pub mod health;
5pub mod scc;
6
7pub use coupling::{CouplingReport, ModuleCoupling, coupling_analysis};
8pub use dead_code::{DeadCodeNode, DeadCodeResult, detect_dead_code};
9pub use graph_builder::{Graph, build_graph, build_node_index};
10pub use health::{HealthReport, HealthScore, composite_health_score};
11pub use scc::{SccComponent, SccResult, tarjan_scc};