| 133 | |
| 134 | #[derive(Debug, Clone, PartialEq)] |
| 135 | pub struct OptimizationResult { |
| 136 | pub best_decision: Vec<i64>, |
| 137 | pub best_objective: f64, |
| 138 | pub evaluated_candidates: usize, |
| 139 | } |
| 140 | |
| 141 | pub trait IntegerObjective { |
| 142 | fn sense(&self) -> ObjectiveSense; |
nothing calls this directly
no outgoing calls
no test coverage detected