| 153 | |
| 154 | #[derive(Debug, Clone, PartialEq)] |
| 155 | pub struct AdapterComparison { |
| 156 | pub exact: OptimizationResult, |
| 157 | pub adapter: OptimizationResult, |
| 158 | /// Non-negative gap in objective space relative to the exact optimum. |
| 159 | pub objective_gap_vs_exact: f64, |
| 160 | } |
| 161 | |
| 162 | pub fn solve_exact( |
| 163 | schema: &DecisionSchema, |
nothing calls this directly
no outgoing calls
no test coverage detected