ommx 3.0.0-alpha.1

Open Mathematical prograMming eXchange (OMMX)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
use super::Instance;
use crate::{
    coeff,
    constraint::{ConstraintID, Provenance, RemovedReason},
    linear,
    sos1_constraint::Sos1ConstraintID,
    Bound, Coefficient, Constraint, Function, Kind, Linear, LinearMonomial, VariableID,
};
use anyhow::{bail, Context, Result};
use num::Zero;
use std::collections::BTreeMap;

/// Plan for each SOS1 variable: reuse it as its own indicator, or allocate a fresh one.
#[derive(Debug)]
enum IndicatorPlan {
    /// Variable is binary with bound `[0, 1]` — reuse it as its own indicator.
    Reuse,
    /// Variable requires a fresh binary indicator and Big-M constraints using these bounds.
    Fresh { bound: Bound },
}

impl Instance {
    #[cfg_attr(doc, katexit::katexit)]
    /// Convert a SOS1 constraint to regular constraints using the Big-M method.
    ///
    /// A SOS1 constraint over $\{x_1, \ldots, x_n\}$ with each $x_i \in [l_i, u_i]$ asserts
    /// that at most one $x_i$ is non-zero. This method encodes it with binary indicator
    /// variables $y_i$ and the constraints
    ///
    /// $$
    /// x_i \leq u_i y_i, \quad l_i y_i \leq x_i, \quad \sum_i y_i \leq 1.
    /// $$
    ///
    /// Per SOS1 variable $x_i$:
    /// - If $x_i$ is binary with bound $[0, 1]$, $y_i \coloneqq x_i$ is reused (no new
    ///   variable, no Big-M pair — only the cardinality sum references it).
    /// - Otherwise, a fresh binary $y_i$ is introduced with the upper and lower Big-M
    ///   constraints. Trivial bounds $u_i = 0$ (upper) or $l_i = 0$ (lower) are skipped.
    ///
    /// Errors if any $x_i$ has a non-binary bound that is not finite, whose domain
    /// excludes $0$ (so that $y_i = 0 \Rightarrow x_i = 0$ would be infeasible), or whose
    /// kind is [`Kind::SemiInteger`] or [`Kind::SemiContinuous`] (the split domain
    /// $\{0\} \cup [l, u]$ is not uniformly implemented across the codebase, so Big-M
    /// conversion of these kinds is not supported yet).
    /// All validation happens before any mutation, so a failed call leaves the instance
    /// unchanged.
    ///
    /// The original SOS1 constraint is moved to [`Instance::removed_sos1_constraints`]
    /// with `reason = "ommx.Instance.convert_sos1_to_constraints"` and a
    /// `constraint_ids` parameter listing the new regular constraint IDs
    /// (comma-separated in insertion order).
    ///
    /// Returns the [`ConstraintID`]s of the newly created regular constraints in
    /// insertion order: Big-M upper/lower pairs per non-binary variable (sorted by
    /// variable ID), followed by the single cardinality sum constraint.
    pub fn convert_sos1_to_constraints(
        &mut self,
        id: Sos1ConstraintID,
    ) -> Result<Vec<ConstraintID>> {
        let plans = self.plan_sos1_conversion(id)?;
        Ok(self.apply_sos1_conversion(id, plans))
    }

    /// Convert every active SOS1 constraint to regular constraints using Big-M.
    ///
    /// See [`Self::convert_sos1_to_constraints`] for the conversion rule.
    ///
    /// This is atomic: every active SOS1 is validated up front, and only once all
    /// validations succeed are the conversions applied. If any SOS1 fails
    /// validation (unsupported kind, non-finite bound, domain excludes 0, etc.),
    /// no mutation happens and the instance is left untouched.
    ///
    /// Returns a map from each original [`Sos1ConstraintID`] to the IDs of the
    /// regular constraints it produced.
    pub fn convert_all_sos1_to_constraints(
        &mut self,
    ) -> Result<BTreeMap<Sos1ConstraintID, Vec<ConstraintID>>> {
        let ids: Vec<_> = self
            .sos1_constraint_collection
            .active()
            .keys()
            .copied()
            .collect();
        // Phase 1: plan every SOS1 up front. Bail on the first validation failure
        // before any mutation has happened.
        let mut all_plans: Vec<(Sos1ConstraintID, Vec<(VariableID, IndicatorPlan)>)> =
            Vec::with_capacity(ids.len());
        for id in ids {
            let plans = self.plan_sos1_conversion(id)?;
            all_plans.push((id, plans));
        }
        // Phase 2: apply. Planned state only references variables that existed at
        // plan time; `apply_sos1_conversion` only adds fresh variables / constraints
        // and relaxes its own SOS1, so earlier applications cannot invalidate later
        // plans.
        let mut result = BTreeMap::new();
        for (id, plans) in all_plans {
            result.insert(id, self.apply_sos1_conversion(id, plans));
        }
        Ok(result)
    }

    /// Validate a single SOS1 and build its per-variable conversion plan.
    ///
    /// Read-only: never mutates `self`. Errors before producing any plan if the
    /// SOS1 references an unknown variable, or if a variable has an unsupported
    /// kind (semi-*), a non-finite bound, or a bound that excludes 0.
    fn plan_sos1_conversion(
        &self,
        id: Sos1ConstraintID,
    ) -> Result<Vec<(VariableID, IndicatorPlan)>> {
        let sos1 = self
            .sos1_constraint_collection
            .active()
            .get(&id)
            .with_context(|| format!("SOS1 constraint with ID {id:?} not found"))?;

        let mut plans: Vec<(VariableID, IndicatorPlan)> = Vec::with_capacity(sos1.variables.len());
        for &var_id in &sos1.variables {
            let dv = self.decision_variables.get(&var_id).with_context(|| {
                format!(
                    "Decision variable {var_id:?} referenced by SOS1 constraint {id:?} not found"
                )
            })?;
            let bound = dv.bound();
            if dv.kind() == Kind::Binary && bound == Bound::of_binary() {
                plans.push((var_id, IndicatorPlan::Reuse));
                continue;
            }
            // Semi-continuous / semi-integer variables carry a split domain `{0} ∪ [l, u]`
            // that the rest of the codebase does not yet treat uniformly (the bound field
            // does not always contain 0, while `check_value_consistency` and many
            // transformations assume it does). Converting them via Big-M would silently
            // paper over that inconsistency, so reject them until the semi semantics are
            // resolved project-wide.
            if matches!(dv.kind(), Kind::SemiInteger | Kind::SemiContinuous) {
                bail!(
                    "Cannot convert SOS1 constraint {id:?} with Big-M: variable {var_id:?} has kind {:?}; semi-continuous / semi-integer variables are not supported",
                    dv.kind()
                );
            }
            if !bound.is_finite() {
                bail!(
                    "Cannot convert SOS1 constraint {id:?} with Big-M: variable {var_id:?} has non-finite bound {bound:?}"
                );
            }
            if bound.lower() > 0.0 || bound.upper() < 0.0 {
                bail!(
                    "Cannot convert SOS1 constraint {id:?} with Big-M: variable {var_id:?} bound {bound:?} excludes 0"
                );
            }
            plans.push((var_id, IndicatorPlan::Fresh { bound }));
        }
        Ok(plans)
    }

    /// Apply a pre-validated SOS1 conversion plan.
    ///
    /// Infallible given a plan returned by [`Self::plan_sos1_conversion`] on the
    /// current instance: every fallible check (kind, bound finiteness, zero
    /// inclusion) was performed there, so any failure here indicates an internal
    /// consistency bug.
    fn apply_sos1_conversion(
        &mut self,
        id: Sos1ConstraintID,
        plans: Vec<(VariableID, IndicatorPlan)>,
    ) -> Vec<ConstraintID> {
        // Allocate fresh binary indicators first.
        let mut indicators: BTreeMap<VariableID, VariableID> = BTreeMap::new();
        for (x_id, plan) in &plans {
            let y_id = match plan {
                IndicatorPlan::Reuse => *x_id,
                IndicatorPlan::Fresh { .. } => {
                    let y = self.new_binary();
                    let y_id = y.id();
                    let _ = y;
                    let metadata = self.variable_metadata_mut();
                    metadata.set_name(y_id, "ommx.sos1_indicator");
                    metadata.set_subscripts(
                        y_id,
                        vec![id.into_inner() as i64, x_id.into_inner() as i64],
                    );
                    y_id
                }
            };
            indicators.insert(*x_id, y_id);
        }

        // Big-M pair per Fresh variable (plans iterated in SOS1-variable-ID order
        // because `sos1.variables` is a `BTreeSet`).
        let mut new_constraint_ids: Vec<ConstraintID> = Vec::new();
        for (x_id, plan) in &plans {
            let IndicatorPlan::Fresh { bound } = plan else {
                continue;
            };
            let y_id = indicators[x_id];

            // Upper Big-M: x_i - u_i y_i <= 0. Skip when u_i == 0 (trivial with l_i <= 0).
            if bound.upper() > 0.0 {
                let neg_u = Coefficient::try_from(-bound.upper())
                    .expect("planner guaranteed finite non-zero upper bound");
                let f = Linear::zero()
                    + linear!(x_id.into_inner())
                    + Linear::single_term(LinearMonomial::Variable(y_id), neg_u);
                let new_id = self.insert_sos1_generated_constraint(
                    id,
                    Constraint::less_than_or_equal_to_zero(Function::from(f)),
                );
                new_constraint_ids.push(new_id);
            }

            // Lower Big-M: l_i y_i - x_i <= 0. Skip when l_i == 0 (trivial with u_i >= 0).
            if bound.lower() < 0.0 {
                let l = Coefficient::try_from(bound.lower())
                    .expect("planner guaranteed finite non-zero lower bound");
                let f = Linear::single_term(LinearMonomial::Variable(y_id), l)
                    + Linear::single_term(LinearMonomial::Variable(*x_id), coeff!(-1.0));
                let new_id = self.insert_sos1_generated_constraint(
                    id,
                    Constraint::less_than_or_equal_to_zero(Function::from(f)),
                );
                new_constraint_ids.push(new_id);
            }
        }

        // Cardinality sum: sum_i y_i - 1 <= 0.
        //
        // Skip emitting it for an empty SOS1, since `0 + (-1) <= 0` is the trivially
        // satisfied tautology `-1 <= 0` and would only inflate the constraint count.
        // Empty SOS1 constraints are rejected at `Instance::build` time, so this
        // branch is defensive: it covers callers that bypass the builder (e.g.
        // future preprocessing that shrinks a SOS1 to empty).
        if !indicators.is_empty() {
            let sum = indicators
                .values()
                .fold(Linear::zero(), |acc, v| acc + linear!(v.into_inner()));
            let cardinality = Function::from(sum + Linear::from(coeff!(-1.0)));
            let new_id = self.insert_sos1_generated_constraint(
                id,
                Constraint::less_than_or_equal_to_zero(cardinality),
            );
            new_constraint_ids.push(new_id);
        }

        // Move SOS1 to removed with a listing of the new constraint IDs.
        let mut parameters = fnv::FnvHashMap::default();
        let constraint_ids_str = new_constraint_ids
            .iter()
            .map(|id| id.into_inner().to_string())
            .collect::<Vec<_>>()
            .join(",");
        parameters.insert("constraint_ids".to_string(), constraint_ids_str);
        self.sos1_constraint_collection
            .relax(
                id,
                RemovedReason {
                    reason: "ommx.Instance.convert_sos1_to_constraints".to_string(),
                    parameters,
                },
            )
            .expect("SOS1 id was present when the plan was built and hasn't been touched since");

        new_constraint_ids
    }

    fn insert_sos1_generated_constraint(
        &mut self,
        sos1_id: Sos1ConstraintID,
        constraint: Constraint,
    ) -> ConstraintID {
        let new_id = self.constraint_collection.unused_id();
        self.constraint_collection
            .active_mut()
            .insert(new_id, constraint);
        self.constraint_collection
            .metadata_mut()
            .push_provenance(new_id, Provenance::Sos1Constraint(sos1_id));
        new_id
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{
        constraint::Equality, sos1_constraint::Sos1Constraint, ATol, DecisionVariable, Sense,
    };
    use ::approx::assert_abs_diff_eq;
    use maplit::btreemap;
    use std::collections::{BTreeMap, BTreeSet};

    /// Build an instance with binary x0, x1 and a SOS1 over {x0, x1}.
    fn binary_sos1_instance() -> Instance {
        let decision_variables = btreemap! {
            VariableID::from(0) => DecisionVariable::binary(VariableID::from(0)),
            VariableID::from(1) => DecisionVariable::binary(VariableID::from(1)),
        };
        let vars: BTreeSet<_> = [0u64, 1].into_iter().map(VariableID::from).collect();
        let sos1 = Sos1Constraint::new(vars);

        Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0) + linear!(1)))
            .decision_variables(decision_variables)
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([(Sos1ConstraintID::from(5), sos1)]))
            .build()
            .unwrap()
    }

    /// Build an instance with a single integer x0 in [-2, 3] and a SOS1 over just {x0}.
    fn integer_sos1_instance(lower: f64, upper: f64) -> Instance {
        let dv = DecisionVariable::new(
            VariableID::from(0),
            Kind::Integer,
            Bound::new(lower, upper).unwrap(),
            None,
            ATol::default(),
        )
        .unwrap();
        let vars: BTreeSet<_> = [VariableID::from(0)].into_iter().collect();
        let sos1 = Sos1Constraint::new(vars);
        Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0)))
            .decision_variables(btreemap! { VariableID::from(0) => dv })
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([(Sos1ConstraintID::from(9), sos1)]))
            .build()
            .unwrap()
    }

    #[test]
    fn binary_sos1_reuses_variables_and_emits_only_cardinality() {
        // All-binary SOS1 reduces to `sum(x_i) - 1 <= 0` with no new variables and no Big-M pair.
        let mut instance = binary_sos1_instance();
        let before_var_count = instance.decision_variables.len();

        let new_ids = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(5))
            .unwrap();

        assert_eq!(new_ids.len(), 1, "binary SOS1 should emit only cardinality");
        assert_eq!(
            instance.decision_variables.len(),
            before_var_count,
            "no new indicators for binary reuse"
        );

        let cardinality = instance.constraints().get(&new_ids[0]).unwrap();
        assert_eq!(cardinality.equality, Equality::LessThanOrEqualToZero);
        let expected = Function::from(linear!(0) + linear!(1) + Linear::from(coeff!(-1.0)));
        assert_abs_diff_eq!(cardinality.function(), &expected);
        assert_eq!(
            instance
                .constraint_collection()
                .metadata()
                .provenance(new_ids[0]),
            &[Provenance::Sos1Constraint(Sos1ConstraintID::from(5))]
        );

        // Original SOS1 is recorded as removed with the new constraint ID.
        assert!(instance.sos1_constraints().is_empty());
        let (_, reason) = instance
            .removed_sos1_constraints()
            .get(&Sos1ConstraintID::from(5))
            .expect("SOS1 should be retained as removed");
        assert_eq!(reason.reason, "ommx.Instance.convert_sos1_to_constraints");
        assert_eq!(
            reason.parameters.get("constraint_ids").map(String::as_str),
            Some(new_ids[0].into_inner().to_string().as_str())
        );
    }

    #[test]
    fn integer_sos1_generates_bigm_pair_and_cardinality() {
        // x0 in [-2, 3]: both upper (u=3) and lower (l=-2) Big-M emitted.
        // Expected order: upper, lower, cardinality.
        let mut instance = integer_sos1_instance(-2.0, 3.0);
        let new_ids = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(9))
            .unwrap();
        assert_eq!(new_ids.len(), 3);

        // A fresh binary indicator was added. Its ID is the next available after x0.
        let y_id = VariableID::from(1);
        let y = instance
            .decision_variables
            .get(&y_id)
            .expect("fresh indicator should exist");
        assert_eq!(y.kind(), Kind::Binary);
        assert_eq!(
            instance.variable_metadata().name(y_id),
            Some("ommx.sos1_indicator")
        );

        // Upper Big-M: x0 - 3 y == x0 + (-3) y <= 0
        let upper = instance.constraints().get(&new_ids[0]).unwrap();
        let expected_upper = Function::from(
            Linear::zero()
                + linear!(0)
                + Linear::single_term(LinearMonomial::Variable(y_id), coeff!(-3.0)),
        );
        assert_abs_diff_eq!(upper.function(), &expected_upper);

        // Lower Big-M: -2 y - x0 <= 0
        let lower = instance.constraints().get(&new_ids[1]).unwrap();
        let expected_lower = Function::from(
            Linear::single_term(LinearMonomial::Variable(y_id), coeff!(-2.0))
                + Linear::single_term(LinearMonomial::Variable(VariableID::from(0)), coeff!(-1.0)),
        );
        assert_abs_diff_eq!(lower.function(), &expected_lower);

        // Cardinality: y - 1 <= 0
        let card = instance.constraints().get(&new_ids[2]).unwrap();
        let expected_card = Function::from(
            Linear::zero() + linear!(y_id.into_inner()) + Linear::from(coeff!(-1.0)),
        );
        assert_abs_diff_eq!(card.function(), &expected_card);

        // `constraint_ids` parameter on removed reason lists all three in insertion order.
        let (_, reason) = instance
            .removed_sos1_constraints()
            .get(&Sos1ConstraintID::from(9))
            .unwrap();
        let expected_ids = new_ids
            .iter()
            .map(|id| id.into_inner().to_string())
            .collect::<Vec<_>>()
            .join(",");
        assert_eq!(
            reason.parameters.get("constraint_ids").map(String::as_str),
            Some(expected_ids.as_str())
        );
    }

    #[test]
    fn trivial_bigm_sides_are_skipped() {
        // x0 in [0, 3]: lower l=0 skips the lower Big-M constraint; only upper + cardinality.
        let mut instance = integer_sos1_instance(0.0, 3.0);
        let new_ids = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(9))
            .unwrap();
        assert_eq!(
            new_ids.len(),
            2,
            "l=0 should skip lower Big-M and emit only upper + cardinality"
        );
    }

    #[test]
    fn infinite_bound_is_rejected_without_mutation() {
        // Continuous x0 with default (infinite) bound cannot be Big-M converted.
        let dv = DecisionVariable::continuous(VariableID::from(0));
        let vars: BTreeSet<_> = [VariableID::from(0)].into_iter().collect();
        let sos1 = Sos1Constraint::new(vars);
        let mut instance = Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0)))
            .decision_variables(btreemap! { VariableID::from(0) => dv })
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([(Sos1ConstraintID::from(9), sos1)]))
            .build()
            .unwrap();
        let before_vars = instance.decision_variables.clone();
        let before_constraints = instance.constraints().clone();

        let err = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(9))
            .unwrap_err();
        assert!(err.to_string().contains("non-finite"));

        // State unchanged: no new variables or constraints were allocated on the failure path.
        assert_eq!(instance.decision_variables, before_vars);
        assert_eq!(instance.constraints(), &before_constraints);
        assert!(!instance.sos1_constraints().is_empty());
    }

    #[test]
    fn bound_excluding_zero_is_rejected() {
        // x0 in [1, 3]: y=0 -> x0=0 is infeasible; bail.
        let mut instance = integer_sos1_instance(1.0, 3.0);
        let err = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(9))
            .unwrap_err();
        assert!(err.to_string().contains("excludes 0"));
    }

    #[test]
    fn semi_variables_are_rejected() {
        // Kind::SemiInteger / SemiContinuous carry a split {0} ∪ [l, u] domain that
        // isn't uniformly implemented across the codebase; Big-M conversion is
        // explicitly not supported for them and must error before mutation.
        for dv in [
            DecisionVariable::semi_integer(VariableID::from(0)),
            DecisionVariable::semi_continuous(VariableID::from(0)),
        ] {
            let kind = dv.kind();
            let sos1 =
                Sos1Constraint::new([VariableID::from(0)].into_iter().collect::<BTreeSet<_>>());
            let mut instance = Instance::builder()
                .sense(Sense::Minimize)
                .objective(Function::from(linear!(0)))
                .decision_variables(btreemap! { VariableID::from(0) => dv })
                .constraints(BTreeMap::new())
                .sos1_constraints(BTreeMap::from([(Sos1ConstraintID::from(9), sos1)]))
                .build()
                .unwrap();
            let before_constraints = instance.constraints().clone();

            let err = instance
                .convert_sos1_to_constraints(Sos1ConstraintID::from(9))
                .unwrap_err();
            let msg = err.to_string();
            assert!(
                msg.contains("semi-continuous") && msg.contains("not supported"),
                "expected not-supported error for {kind:?}, got: {msg}"
            );
            // Error is raised before any mutation: active SOS1 still present, no new constraints.
            assert!(instance
                .sos1_constraints()
                .contains_key(&Sos1ConstraintID::from(9)));
            assert_eq!(instance.constraints(), &before_constraints);
        }
    }

    #[test]
    fn missing_id_errors_without_mutating_state() {
        let mut instance = binary_sos1_instance();
        let before_sos1 = instance.sos1_constraints().clone();
        let before_constraints = instance.constraints().clone();

        let err = instance
            .convert_sos1_to_constraints(Sos1ConstraintID::from(999))
            .unwrap_err();
        assert!(err.to_string().contains("999"));

        assert_eq!(instance.sos1_constraints(), &before_sos1);
        assert_eq!(instance.constraints(), &before_constraints);
    }

    #[test]
    fn bulk_conversion_returns_per_sos1_ids() {
        // Two disjoint SOS1 constraints, both binary — bulk call produces one entry each.
        let decision_variables = btreemap! {
            VariableID::from(0) => DecisionVariable::binary(VariableID::from(0)),
            VariableID::from(1) => DecisionVariable::binary(VariableID::from(1)),
            VariableID::from(2) => DecisionVariable::binary(VariableID::from(2)),
            VariableID::from(3) => DecisionVariable::binary(VariableID::from(3)),
        };
        let a = Sos1Constraint::new(
            [VariableID::from(0), VariableID::from(1)]
                .into_iter()
                .collect(),
        );
        let b = Sos1Constraint::new(
            [VariableID::from(2), VariableID::from(3)]
                .into_iter()
                .collect(),
        );
        let mut instance = Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0) + linear!(2)))
            .decision_variables(decision_variables)
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([
                (Sos1ConstraintID::from(1), a),
                (Sos1ConstraintID::from(2), b),
            ]))
            .build()
            .unwrap();

        let result = instance.convert_all_sos1_to_constraints().unwrap();
        assert_eq!(result.len(), 2);
        for new_ids in result.values() {
            assert_eq!(new_ids.len(), 1); // all-binary: only cardinality
            assert!(instance.constraints().contains_key(&new_ids[0]));
        }
        assert!(instance.sos1_constraints().is_empty());
        assert_eq!(instance.removed_sos1_constraints().len(), 2);
    }

    #[test]
    fn empty_sos1_constraint_is_rejected_at_build() {
        // An empty Sos1Constraint carries no variables to constrain, so the
        // Big-M cardinality constraint would degenerate to the tautology `-1 <= 0`.
        // The builder should reject empty SOS1 instead of letting it through.
        let dv = DecisionVariable::binary(VariableID::from(0));
        let empty_sos1 = Sos1Constraint::new(BTreeSet::new());
        let err = Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0)))
            .decision_variables(btreemap! { VariableID::from(0) => dv })
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([(Sos1ConstraintID::from(42), empty_sos1)]))
            .build()
            .unwrap_err();
        let msg = err.to_string();
        assert!(
            msg.contains("no variables") && msg.contains("42"),
            "expected EmptySos1Constraint error mentioning the id, got: {msg}"
        );
    }

    #[test]
    fn bulk_conversion_is_atomic_on_error() {
        // Two SOS1 constraints: the first valid (binary reuse), the second invalid
        // (continuous with default, infinite bound). The bulk call must fail
        // without applying the valid one either.
        let decision_variables = btreemap! {
            VariableID::from(0) => DecisionVariable::binary(VariableID::from(0)),
            VariableID::from(1) => DecisionVariable::binary(VariableID::from(1)),
            VariableID::from(2) => DecisionVariable::continuous(VariableID::from(2)),
        };
        let valid = Sos1Constraint::new(
            [VariableID::from(0), VariableID::from(1)]
                .into_iter()
                .collect(),
        );
        let invalid =
            Sos1Constraint::new([VariableID::from(2)].into_iter().collect::<BTreeSet<_>>());
        let mut instance = Instance::builder()
            .sense(Sense::Minimize)
            .objective(Function::from(linear!(0) + linear!(2)))
            .decision_variables(decision_variables)
            .constraints(BTreeMap::new())
            .sos1_constraints(BTreeMap::from([
                (Sos1ConstraintID::from(1), valid),
                (Sos1ConstraintID::from(2), invalid),
            ]))
            .build()
            .unwrap();
        let before_sos1 = instance.sos1_constraints().clone();
        let before_vars = instance.decision_variables.clone();
        let before_constraints = instance.constraints().clone();

        let err = instance.convert_all_sos1_to_constraints().unwrap_err();
        assert!(err.to_string().contains("non-finite"));

        // Atomicity: the earlier valid SOS1 must not have been converted either.
        assert_eq!(instance.sos1_constraints(), &before_sos1);
        assert_eq!(instance.decision_variables, before_vars);
        assert_eq!(instance.constraints(), &before_constraints);
        assert!(instance.removed_sos1_constraints().is_empty());
    }
}