| 91 | |
| 92 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 93 | pub struct DecisionSchema { |
| 94 | pub variables: Vec<IntegerVariable>, |
| 95 | /// Hard cap for exact finite-set enumeration. |
| 96 | pub max_enumeration: usize, |
| 97 | } |
| 98 | |
| 99 | impl DecisionSchema { |
| 100 | pub fn validate(&self) -> Result<(), CombinatorialOptimizationError> { |
nothing calls this directly
no outgoing calls
no test coverage detected