| 43 | |
| 44 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 45 | pub struct IntegerVariable { |
| 46 | pub lower: i64, |
| 47 | pub upper: i64, |
| 48 | pub step: i64, |
| 49 | } |
| 50 | |
| 51 | impl IntegerVariable { |
| 52 | fn validate(self) -> Result<(), CombinatorialOptimizationError> { |
nothing calls this directly
no outgoing calls
no test coverage detected