ommx 3.0.0-beta.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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
// This file is @generated by prost-build.
/// Human-authored modeling notation for one table or collection row.
///
/// This label preserves the mathematical model notation before the model was
/// lowered into OMMX. For example, a variable written as `x\[i, j\]` can be
/// represented as `name = "x"` and `subscripts = \[i, j\]`.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ModelingLabel {
    #[prost(string, optional, tag = "1")]
    pub name: ::core::option::Option<::prost::alloc::string::String>,
    #[prost(int64, repeated, tag = "2")]
    pub subscripts: ::prost::alloc::vec::Vec<i64>,
    #[prost(btree_map = "string, string", tag = "3")]
    pub parameters: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
    #[prost(string, optional, tag = "4")]
    pub description: ::core::option::Option<::prost::alloc::string::String>,
}
/// Wire-level semantics required to interpret a top-level root exactly.
///
/// This is OMMX's feature-based forward-compatibility gate. Protobuf itself
/// preserves wire compatibility by letting older readers ignore unknown fields,
/// but that is not sufficient for mathematical optimization data: ignoring an
/// unknown constraint family or other semantic field can turn the payload into a
/// different problem. Top-level roots therefore declare the semantic features
/// required by the concrete payload.
///
/// Readers must reject payloads containing unknown, unsupported, or unspecified
/// `required_features`. Writers must include every feature whose omission would
/// let an older reader silently interpret a weaker or otherwise different model.
/// Writers must not emit `FEATURE_UNSPECIFIED` as a required feature.
#[non_exhaustive]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Feature {
    /// Placeholder for the protobuf default value. This is not a semantic feature.
    Unspecified = 0,
    /// The payload contains first-class indicator constraints.
    ConstraintIndicator = 1,
    /// The payload contains first-class one-hot constraints.
    ConstraintOneHot = 2,
    /// The payload contains first-class SOS1 constraints.
    ConstraintSos1 = 3,
}
impl Feature {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Feature::Unspecified => "FEATURE_UNSPECIFIED",
            Feature::ConstraintIndicator => "FEATURE_CONSTRAINT_INDICATOR",
            Feature::ConstraintOneHot => "FEATURE_CONSTRAINT_ONE_HOT",
            Feature::ConstraintSos1 => "FEATURE_CONSTRAINT_SOS1",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "FEATURE_UNSPECIFIED" => Some(Self::Unspecified),
            "FEATURE_CONSTRAINT_INDICATOR" => Some(Self::ConstraintIndicator),
            "FEATURE_CONSTRAINT_ONE_HOT" => Some(Self::ConstraintOneHot),
            "FEATURE_CONSTRAINT_SOS1" => Some(Self::ConstraintSos1),
            _ => None,
        }
    }
}
/// One transformation step in a constraint's lineage.
///
/// Provenance records special-constraint origins when a special constraint is
/// converted or propagated into another constraint family.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Provenance {
    #[prost(oneof = "provenance::Source", tags = "1, 2, 3")]
    pub source: ::core::option::Option<provenance::Source>,
}
/// Nested message and enum types in `Provenance`.
pub mod provenance {
    #[non_exhaustive]
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Source {
        #[prost(uint64, tag = "1")]
        IndicatorConstraintId(u64),
        #[prost(uint64, tag = "2")]
        OneHotConstraintId(u64),
        #[prost(uint64, tag = "3")]
        Sos1ConstraintId(u64),
    }
}
/// Constraint sidecar owned by one constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConstraintContext {
    #[prost(message, optional, tag = "1")]
    pub label: ::core::option::Option<ModelingLabel>,
    #[prost(message, repeated, tag = "2")]
    pub provenance: ::prost::alloc::vec::Vec<Provenance>,
}
/// Why a constraint row was removed or relaxed by preprocessing.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemovedReason {
    #[prost(string, tag = "1")]
    pub reason: ::prost::alloc::string::String,
    #[prost(btree_map = "string, string", tag = "2")]
    pub parameters: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
}
/// Regular scalar constraint row.
///
/// The enclosing collection owns ConstraintID, modeling context, active/removed
/// placement, and removed reasons.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RegularConstraint {
    #[prost(enumeration = "super::v1::Equality", tag = "1")]
    pub equality: i32,
    #[prost(message, optional, tag = "2")]
    pub function: ::core::option::Option<super::v1::Function>,
}
/// Indicator constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IndicatorConstraint {
    #[prost(uint64, tag = "1")]
    pub indicator_variable: u64,
    #[prost(enumeration = "super::v1::Equality", tag = "2")]
    pub equality: i32,
    #[prost(message, optional, tag = "3")]
    pub function: ::core::option::Option<super::v1::Function>,
}
/// One-hot constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OneHotConstraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
}
/// SOS1 constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Sos1Constraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
}
/// Regular constraint collection at the definition stage.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RegularConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub active: ::prost::alloc::collections::BTreeMap<u64, RegularConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed: ::prost::alloc::collections::BTreeMap<u64, RegularConstraint>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "4")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Indicator constraint collection at the definition stage.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct IndicatorConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub active: ::prost::alloc::collections::BTreeMap<u64, IndicatorConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed: ::prost::alloc::collections::BTreeMap<u64, IndicatorConstraint>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "4")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// One-hot constraint collection at the definition stage.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OneHotConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub active: ::prost::alloc::collections::BTreeMap<u64, OneHotConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed: ::prost::alloc::collections::BTreeMap<u64, OneHotConstraint>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "4")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// SOS1 constraint collection at the definition stage.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Sos1ConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub active: ::prost::alloc::collections::BTreeMap<u64, Sos1Constraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed: ::prost::alloc::collections::BTreeMap<u64, Sos1Constraint>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "4")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Evaluated regular constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedRegularConstraint {
    #[prost(enumeration = "super::v1::Equality", tag = "1")]
    pub equality: i32,
    #[prost(double, tag = "2")]
    pub evaluated_value: f64,
    #[prost(bool, tag = "3")]
    pub feasible: bool,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
    #[prost(double, optional, tag = "5")]
    pub dual_variable: ::core::option::Option<f64>,
}
/// Evaluated indicator constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedIndicatorConstraint {
    #[prost(uint64, tag = "1")]
    pub indicator_variable: u64,
    #[prost(enumeration = "super::v1::Equality", tag = "2")]
    pub equality: i32,
    #[prost(double, tag = "3")]
    pub evaluated_value: f64,
    #[prost(bool, tag = "4")]
    pub feasible: bool,
    #[prost(bool, tag = "5")]
    pub indicator_active: bool,
    #[prost(uint64, repeated, tag = "6")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Evaluated one-hot constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedOneHotConstraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
    #[prost(bool, tag = "2")]
    pub feasible: bool,
    #[prost(uint64, optional, tag = "3")]
    pub active_variable: ::core::option::Option<u64>,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Evaluated SOS1 constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedSos1Constraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
    #[prost(bool, tag = "2")]
    pub feasible: bool,
    #[prost(uint64, optional, tag = "3")]
    pub active_variable: ::core::option::Option<u64>,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Evaluated regular constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedRegularConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedRegularConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Evaluated indicator constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedIndicatorConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedIndicatorConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Evaluated one-hot constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedOneHotConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedOneHotConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Evaluated SOS1 constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedSos1ConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedSos1Constraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Map value used when a present sample can have no active variable.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledActiveVariable {
    #[prost(uint64, optional, tag = "1")]
    pub variable_id: ::core::option::Option<u64>,
}
/// Sampled regular constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledRegularConstraint {
    #[prost(enumeration = "super::v1::Equality", tag = "1")]
    pub equality: i32,
    #[prost(message, optional, tag = "2")]
    pub evaluated_values: ::core::option::Option<super::v1::SampledValues>,
    #[prost(btree_map = "uint64, bool", tag = "3")]
    pub feasible: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
    #[prost(message, optional, tag = "5")]
    pub dual_variables: ::core::option::Option<super::v1::SampledValues>,
}
/// Sampled indicator constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledIndicatorConstraint {
    #[prost(uint64, tag = "1")]
    pub indicator_variable: u64,
    #[prost(enumeration = "super::v1::Equality", tag = "2")]
    pub equality: i32,
    #[prost(message, optional, tag = "3")]
    pub evaluated_values: ::core::option::Option<super::v1::SampledValues>,
    #[prost(btree_map = "uint64, bool", tag = "4")]
    pub feasible: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(btree_map = "uint64, bool", tag = "5")]
    pub indicator_active: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(uint64, repeated, tag = "6")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Sampled one-hot constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledOneHotConstraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
    #[prost(btree_map = "uint64, bool", tag = "2")]
    pub feasible: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub active_variable: ::prost::alloc::collections::BTreeMap<u64, SampledActiveVariable>,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Sampled SOS1 constraint row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledSos1Constraint {
    #[prost(uint64, repeated, tag = "1")]
    pub variables: ::prost::alloc::vec::Vec<u64>,
    #[prost(btree_map = "uint64, bool", tag = "2")]
    pub feasible: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub active_variable: ::prost::alloc::collections::BTreeMap<u64, SampledActiveVariable>,
    #[prost(uint64, repeated, tag = "4")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Sampled regular constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledRegularConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledRegularConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Sampled indicator constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledIndicatorConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledIndicatorConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Sampled one-hot constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledOneHotConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledOneHotConstraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Sampled SOS1 constraint collection.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledSos1ConstraintCollection {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledSos1Constraint>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub removed_reasons: ::prost::alloc::collections::BTreeMap<u64, RemovedReason>,
    #[prost(btree_map = "uint64, message", tag = "3")]
    pub contexts: ::prost::alloc::collections::BTreeMap<u64, ConstraintContext>,
}
/// Definition-stage decision-variable row.
///
/// The enclosing DecisionVariableTable owns VariableID and modeling labels.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DecisionVariable {
    #[prost(enumeration = "super::v1::decision_variable::Kind", tag = "1")]
    pub kind: i32,
    #[prost(message, optional, tag = "2")]
    pub bound: ::core::option::Option<super::v1::Bound>,
}
/// Evaluated-stage decision-variable row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedDecisionVariable {
    #[prost(enumeration = "super::v1::decision_variable::Kind", tag = "1")]
    pub kind: i32,
    #[prost(message, optional, tag = "2")]
    pub bound: ::core::option::Option<super::v1::Bound>,
    #[prost(double, tag = "3")]
    pub value: f64,
}
/// Sampled-stage decision-variable row.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledDecisionVariable {
    #[prost(enumeration = "super::v1::decision_variable::Kind", tag = "1")]
    pub kind: i32,
    #[prost(message, optional, tag = "2")]
    pub bound: ::core::option::Option<super::v1::Bound>,
    #[prost(message, optional, tag = "3")]
    pub samples: ::core::option::Option<super::v1::SampledValues>,
}
/// Definition-stage decision-variable table.
///
/// Map keys own VariableID. `labels` and `fixed_values` must only reference
/// IDs present in `entries`.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DecisionVariableTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, DecisionVariable>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
    #[prost(btree_map = "uint64, double", tag = "3")]
    pub fixed_values: ::prost::alloc::collections::BTreeMap<u64, f64>,
}
/// Evaluated-stage decision-variable table.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedDecisionVariableTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedDecisionVariable>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Sampled-stage decision-variable table.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledDecisionVariableTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledDecisionVariable>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Named function row used by v2 top-level table owners.
///
/// The enclosing named-function table owns the NamedFunctionID and modeling
/// label sidecars. This row stores only the intrinsic expression payload.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NamedFunction {
    #[prost(message, optional, tag = "1")]
    pub function: ::core::option::Option<super::v1::Function>,
}
/// Evaluated named-function row used by v2 top-level table owners.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedNamedFunction {
    #[prost(double, tag = "1")]
    pub evaluated_value: f64,
    #[prost(uint64, repeated, tag = "2")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Sampled named-function row used by v2 top-level table owners.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledNamedFunction {
    #[prost(message, optional, tag = "1")]
    pub evaluated_values: ::core::option::Option<super::v1::SampledValues>,
    #[prost(uint64, repeated, tag = "2")]
    pub used_decision_variable_ids: ::prost::alloc::vec::Vec<u64>,
}
/// Definition-stage named-function table.
///
/// Map keys own NamedFunctionID. `labels` must only reference IDs present in
/// `entries`.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NamedFunctionTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, NamedFunction>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Evaluated-stage named-function table.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EvaluatedNamedFunctionTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, EvaluatedNamedFunction>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Sampled-stage named-function table.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampledNamedFunctionTable {
    #[prost(btree_map = "uint64, message", tag = "1")]
    pub entries: ::prost::alloc::collections::BTreeMap<u64, SampledNamedFunction>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Validated optimization problem serialization root.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Instance {
    #[prost(enumeration = "Feature", repeated, tag = "1")]
    pub required_features: ::prost::alloc::vec::Vec<i32>,
    #[prost(message, optional, tag = "2")]
    pub description: ::core::option::Option<super::v1::instance::Description>,
    #[prost(message, optional, tag = "3")]
    pub decision_variables: ::core::option::Option<DecisionVariableTable>,
    #[prost(message, optional, tag = "4")]
    pub objective: ::core::option::Option<super::v1::Function>,
    #[prost(message, optional, tag = "5")]
    pub regular_constraints: ::core::option::Option<RegularConstraintCollection>,
    #[prost(enumeration = "super::v1::instance::Sense", tag = "6")]
    pub sense: i32,
    #[prost(message, optional, tag = "7")]
    pub parameters: ::core::option::Option<super::v1::Parameters>,
    #[prost(message, optional, tag = "8")]
    pub indicator_constraints: ::core::option::Option<IndicatorConstraintCollection>,
    #[prost(message, optional, tag = "9")]
    pub one_hot_constraints: ::core::option::Option<OneHotConstraintCollection>,
    #[prost(message, optional, tag = "10")]
    pub sos1_constraints: ::core::option::Option<Sos1ConstraintCollection>,
    #[prost(btree_map = "uint64, message", tag = "11")]
    pub decision_variable_dependency:
        ::prost::alloc::collections::BTreeMap<u64, super::v1::Function>,
    #[prost(message, optional, tag = "12")]
    pub named_functions: ::core::option::Option<NamedFunctionTable>,
    #[prost(btree_map = "string, string", tag = "13")]
    pub annotations: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
}
/// Parameter IDs and labels owned by ParametricInstance.
///
/// Parameter IDs intentionally share the VariableID namespace with decision
/// variables. ParametricInstance validates disjointness.
///
/// `ids` is a set encoded as a repeated field. IDs must be unique, and `labels`
/// must only reference IDs present in `ids`.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParameterTable {
    #[prost(uint64, repeated, tag = "1")]
    pub ids: ::prost::alloc::vec::Vec<u64>,
    #[prost(btree_map = "uint64, message", tag = "2")]
    pub labels: ::prost::alloc::collections::BTreeMap<u64, ModelingLabel>,
}
/// Validated parametric optimization problem serialization root.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParametricInstance {
    #[prost(enumeration = "Feature", repeated, tag = "1")]
    pub required_features: ::prost::alloc::vec::Vec<i32>,
    #[prost(message, optional, tag = "2")]
    pub description: ::core::option::Option<super::v1::instance::Description>,
    #[prost(message, optional, tag = "3")]
    pub decision_variables: ::core::option::Option<DecisionVariableTable>,
    #[prost(message, optional, tag = "4")]
    pub parameters: ::core::option::Option<ParameterTable>,
    #[prost(message, optional, tag = "5")]
    pub objective: ::core::option::Option<super::v1::Function>,
    #[prost(message, optional, tag = "6")]
    pub regular_constraints: ::core::option::Option<RegularConstraintCollection>,
    #[prost(enumeration = "super::v1::instance::Sense", tag = "7")]
    pub sense: i32,
    #[prost(message, optional, tag = "8")]
    pub indicator_constraints: ::core::option::Option<IndicatorConstraintCollection>,
    #[prost(message, optional, tag = "9")]
    pub one_hot_constraints: ::core::option::Option<OneHotConstraintCollection>,
    #[prost(message, optional, tag = "10")]
    pub sos1_constraints: ::core::option::Option<Sos1ConstraintCollection>,
    #[prost(btree_map = "uint64, message", tag = "11")]
    pub decision_variable_dependency:
        ::prost::alloc::collections::BTreeMap<u64, super::v1::Function>,
    #[prost(message, optional, tag = "12")]
    pub named_functions: ::core::option::Option<NamedFunctionTable>,
    #[prost(btree_map = "string, string", tag = "13")]
    pub annotations: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
}
/// Validated multi-sample solver or sampler output serialization root.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SampleSet {
    #[prost(enumeration = "Feature", repeated, tag = "1")]
    pub required_features: ::prost::alloc::vec::Vec<i32>,
    #[prost(message, optional, tag = "2")]
    pub objectives: ::core::option::Option<super::v1::SampledValues>,
    #[prost(message, optional, tag = "3")]
    pub decision_variables: ::core::option::Option<SampledDecisionVariableTable>,
    #[prost(message, optional, tag = "4")]
    pub sampled_regular_constraints: ::core::option::Option<SampledRegularConstraintCollection>,
    #[prost(btree_map = "uint64, bool", tag = "5")]
    pub feasible: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(enumeration = "super::v1::instance::Sense", tag = "6")]
    pub sense: i32,
    #[prost(btree_map = "uint64, bool", tag = "7")]
    pub feasible_relaxed: ::prost::alloc::collections::BTreeMap<u64, bool>,
    #[prost(message, optional, tag = "8")]
    pub sampled_named_functions: ::core::option::Option<SampledNamedFunctionTable>,
    #[prost(message, optional, tag = "9")]
    pub metadata: ::core::option::Option<super::v1::ProcessMetadata>,
    #[prost(btree_map = "string, string", tag = "10")]
    pub annotations: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
    #[prost(message, optional, tag = "11")]
    pub sampled_indicator_constraints: ::core::option::Option<SampledIndicatorConstraintCollection>,
    #[prost(message, optional, tag = "12")]
    pub sampled_one_hot_constraints: ::core::option::Option<SampledOneHotConstraintCollection>,
    #[prost(message, optional, tag = "13")]
    pub sampled_sos1_constraints: ::core::option::Option<SampledSos1ConstraintCollection>,
    /// Absolute tolerance used to compute and validate `feasible`,
    /// `feasible_relaxed`, and per-constraint feasibility columns.
    #[prost(double, optional, tag = "14")]
    pub feasibility_atol: ::core::option::Option<f64>,
}
/// Validated single-state solver output serialization root.
#[non_exhaustive]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Solution {
    #[prost(enumeration = "Feature", repeated, tag = "1")]
    pub required_features: ::prost::alloc::vec::Vec<i32>,
    #[prost(double, tag = "2")]
    pub objective: f64,
    #[prost(message, optional, tag = "3")]
    pub decision_variables: ::core::option::Option<EvaluatedDecisionVariableTable>,
    #[prost(message, optional, tag = "4")]
    pub evaluated_regular_constraints: ::core::option::Option<EvaluatedRegularConstraintCollection>,
    #[prost(bool, tag = "5")]
    pub feasible: bool,
    #[prost(enumeration = "super::v1::Optimality", tag = "6")]
    pub optimality: i32,
    #[prost(enumeration = "super::v1::Relaxation", tag = "7")]
    pub relaxation: i32,
    #[prost(bool, optional, tag = "8")]
    pub feasible_relaxed: ::core::option::Option<bool>,
    #[prost(enumeration = "super::v1::instance::Sense", tag = "9")]
    pub sense: i32,
    #[prost(message, optional, tag = "10")]
    pub evaluated_named_functions: ::core::option::Option<EvaluatedNamedFunctionTable>,
    #[prost(message, optional, tag = "11")]
    pub metadata: ::core::option::Option<super::v1::ProcessMetadata>,
    #[prost(btree_map = "string, string", tag = "12")]
    pub annotations: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
    #[prost(message, optional, tag = "13")]
    pub evaluated_indicator_constraints:
        ::core::option::Option<EvaluatedIndicatorConstraintCollection>,
    #[prost(message, optional, tag = "14")]
    pub evaluated_one_hot_constraints: ::core::option::Option<EvaluatedOneHotConstraintCollection>,
    #[prost(message, optional, tag = "15")]
    pub evaluated_sos1_constraints: ::core::option::Option<EvaluatedSos1ConstraintCollection>,
    /// Absolute tolerance used to compute and validate `feasible`,
    /// `feasible_relaxed`, and per-constraint feasibility columns.
    #[prost(double, optional, tag = "16")]
    pub feasibility_atol: ::core::option::Option<f64>,
}