1//! ILP (Integer Linear Programming) solver module.
2//!
3//! This module provides an ILP solver using the HiGHS solver via the `good_lp` crate.
4//! It is only available when the `ilp` feature is enabled.
56mod solver;
78pub use solver::{ILPSolveError, ILPSolver};