(&self)
| 10 | |
| 11 | impl IntegerObjective for NonConvexIntegerObjective { |
| 12 | fn sense(&self) -> ObjectiveSense { |
| 13 | ObjectiveSense::Maximize |
| 14 | } |
| 15 | |
| 16 | fn evaluate(&self, decision: &[i64]) -> Result<f64, CombinatorialOptimizationError> { |
| 17 | if decision.len() != 2 { |
no outgoing calls
no test coverage detected