//! Definite Variable Elimination (DVE) — GPMC-style preprocessing.
//!
//! Reimplements GPMC's `Simplify()` loop: an interleaving of equivalence
//! merging (SCC-based; GPMC uses SAT probing), definability-based variable
//! elimination, and clause strengthening (vivification).
//!
//! References:
//! - GPMC: <https://github.com/System-Verification-Lab/GPMC>
//! - Lagniez, Lonca, Marquis. "Improving Model Counting by Leveraging Definability." IJCAI 2016
//! - Korhonen. "Integrating Tree Decompositions..." CP 2021
pub
pub use build_dual_cnf_with_indicators;
pub use ;
pub use FrozenEquiv;
pub use post_dve_strengthen;
pub use post_dve_strengthen_with_meter;