clinlat 0.2.0

A symbolic substrate for clinical decision-making based on refinable hypothesis lattices and sound deduction operators
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
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
//! Composition of multiple deduction operators.
//!
//! Implements DEF-PS-09 (operator set Δ_PS) and OBL-PS-03 (soundness under composition).

use crate::abstain::AbstainReason;
use crate::hyp::Hyp;
use crate::operator::{Evidence, Operator};
use crate::outcome::Outcome;

/// Metadata identifying a registered operator.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct OperatorMetadata {
    /// Human-readable name of the operator (e.g., "SofaRespOperator").
    pub name: String,
    /// Version identifier of the operator (e.g., "clinlat-v0.1.0").
    pub version: String,
}

/// Outcome of applying an operator set to a hypothesis and evidence.
#[derive(Clone, Debug, PartialEq)]
pub struct SetOutcome {
    /// The resulting hypothesis after all operators have been applied (or attempted).
    /// Invariant: result ⊑ input hypothesis (per DEF-PS-09, OBL-PS-03).
    pub result: Hyp,
    /// Operators that abstained, paired with their abstention reasons.
    /// Ordered by operator application order.
    pub abstentions: Vec<(String, AbstainReason)>,
}

/// A set of deduction operators that compose via propagate-forward semantics.
///
/// An `OperatorSet` applies each operator in sequence to a hypothesis and evidence.
/// If an operator abstains, the abstention is recorded but does not prevent
/// subsequent operators from running on the best-known hypothesis so far.
///
/// **Invariant:** The result of `apply_set` is always ⊑ the input hypothesis (INV-PS-03).
/// **Invariant:** Operators and metadata are kept in lockstep registration order.
pub struct OperatorSet {
    /// Operators and their metadata in registration order.
    /// Kept as a single Vec to ensure operator order always matches metadata order.
    operators_and_metadata: Vec<(Box<dyn Operator>, OperatorMetadata)>,
}

impl OperatorSet {
    /// Creates a new empty operator set.
    pub fn new() -> Self {
        OperatorSet {
            operators_and_metadata: Vec::new(),
        }
    }

    /// Registers an operator with the set and returns self for chaining.
    ///
    /// **Panics** if an operator with the same name is already registered.
    /// Operator names must be unique to ensure the audit trail in `SetOutcome.abstentions`
    /// unambiguously identifies each operator that abstains.
    pub fn register(mut self, op: Box<dyn Operator>, meta: OperatorMetadata) -> Self {
        if self
            .operators_and_metadata
            .iter()
            .any(|(_, m)| m.name == meta.name)
        {
            panic!(
                "OperatorSet::register: operator '{}' already registered",
                meta.name
            );
        }
        self.operators_and_metadata.push((op, meta));
        self
    }

    /// Returns the number of operators in the set.
    pub fn len(&self) -> usize {
        self.operators_and_metadata.len()
    }

    /// Returns true if the operator set is empty.
    pub fn is_empty(&self) -> bool {
        self.operators_and_metadata.is_empty()
    }

    /// Returns the names of all registered operators in registration order.
    pub fn operator_names(&self) -> Vec<&str> {
        self.operators_and_metadata
            .iter()
            .map(|(_, m)| m.name.as_str())
            .collect()
    }

    /// Applies all operators in sequence, propagating refinements forward.
    ///
    /// **Algorithm:**
    /// 1. Start with `current_h = h.clone()`.
    /// 2. For each operator (in registration order):
    ///    - Call `operator.apply(&current_h, e)`.
    ///    - If `Refined(h')`: assert `h' ⊑ current_h`, then set `current_h = h'`.
    ///    - If `Abstain(r)`: record `(operator_name, r)` and leave `current_h` unchanged.
    /// 3. Return `SetOutcome { result: current_h, abstentions }`.
    ///
    /// **Semantics:** Abstention from one operator does not silence the next; each operator
    /// sees the best-known hypothesis so far. Final result ⊑ input always (OBL-PS-03).
    ///
    /// # Safety
    ///
    /// The refinement invariant (INV-PS-03) is checked via `debug_assert!` and only fires
    /// in debug builds. In release builds, this invariant is unchecked; correctness depends
    /// on each registered operator satisfying INV-PS-03 in its own implementation.
    /// For clinical use, register only operators whose unit tests verify monotonicity.
    pub fn apply_set(&self, h: &Hyp, e: &Evidence) -> SetOutcome {
        let mut current_h = h.clone();
        let mut abstentions = Vec::new();

        for (op, meta) in self.operators_and_metadata.iter() {
            match op.apply(&current_h, e) {
                Outcome::Refined(h_prime) => {
                    debug_assert!(
                        h_prime <= current_h,
                        "INV-PS-03 violated by {}: refinement not strictly refined",
                        meta.name
                    );
                    current_h = h_prime;
                }
                Outcome::Abstain(reason) => {
                    abstentions.push((meta.name.clone(), reason));
                }
            }
        }

        SetOutcome {
            result: current_h,
            abstentions,
        }
    }
}

impl Default for OperatorSet {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::provenance::{Provenance, ProvenanceOrigin};
    use crate::version::Ver;
    use crate::{Atom, OntologySystem};
    use chrono::Utc;
    use std::collections::BTreeMap;

    // Fixture operators for property testing

    /// No-op operator: refines to identity (h' = h)
    struct NoopOperatorFixture;
    impl Operator for NoopOperatorFixture {
        fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
            Outcome::Refined(_h.clone())
        }
    }

    /// Constant refinement operator: adds a fixed atom to any hypothesis
    struct ConstRefineOperatorFixture {
        atom: Atom,
    }
    impl Operator for ConstRefineOperatorFixture {
        fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
            let mut atoms = _h.atoms().to_vec();
            atoms.push(self.atom.clone());
            Outcome::Refined(Hyp::new(atoms))
        }
    }

    /// Always-abstain operator: never refines
    struct AlwaysAbstainOperatorFixture;
    impl Operator for AlwaysAbstainOperatorFixture {
        fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
            Outcome::Abstain(AbstainReason::InsufficientEvidence("fixture abstain"))
        }
    }

    fn test_evidence() -> Evidence {
        Evidence::new(
            vec![],
            Provenance::new(
                ProvenanceOrigin::new("test", "test", "test"),
                Utc::now(),
                Ver::new("test", "test", "0.1.0"),
                BTreeMap::new(),
            ),
        )
    }

    #[test]
    fn test_empty_set_construction() {
        let set = OperatorSet::new();
        assert!(set.is_empty());
        assert_eq!(set.len(), 0);
        assert_eq!(set.operator_names(), Vec::<&str>::new());
    }

    #[test]
    fn test_register_single_operator() {
        struct DummyOp;
        impl Operator for DummyOp {
            fn apply(&self, h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(h.clone())
            }
        }

        let set = OperatorSet::new().register(
            Box::new(DummyOp),
            OperatorMetadata {
                name: "TestOp".to_string(),
                version: "v1.0.0".to_string(),
            },
        );

        assert_eq!(set.len(), 1);
        assert!(!set.is_empty());
        assert_eq!(set.operator_names(), vec!["TestOp"]);
    }

    #[test]
    fn test_register_multiple_operators() {
        struct DummyOp1;
        impl Operator for DummyOp1 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        struct DummyOp2;
        impl Operator for DummyOp2 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(DummyOp1),
                OperatorMetadata {
                    name: "Op1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(DummyOp2),
                OperatorMetadata {
                    name: "Op2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        assert_eq!(set.len(), 2);
        assert_eq!(set.operator_names(), vec!["Op1", "Op2"]);
    }

    #[test]
    fn test_apply_set_empty_returns_input() {
        let set = OperatorSet::new();
        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert!(outcome.abstentions.is_empty());
    }

    #[test]
    fn test_apply_set_single_noop() {
        struct NoopOp;
        impl Operator for NoopOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let set = OperatorSet::new().register(
            Box::new(NoopOp),
            OperatorMetadata {
                name: "Noop".to_string(),
                version: "v1.0.0".to_string(),
            },
        );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert!(outcome.abstentions.is_empty());
    }

    #[test]
    fn test_apply_set_single_abstain() {
        struct AbstainOp;
        impl Operator for AbstainOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::InsufficientEvidence("test"))
            }
        }

        let set = OperatorSet::new().register(
            Box::new(AbstainOp),
            OperatorMetadata {
                name: "Abstain".to_string(),
                version: "v1.0.0".to_string(),
            },
        );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert_eq!(outcome.abstentions.len(), 1);
        assert_eq!(outcome.abstentions[0].0, "Abstain");
    }

    #[test]
    fn test_apply_set_preserves_input_on_all_abstain() {
        struct AbstainOp1;
        impl Operator for AbstainOp1 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::InsufficientEvidence("test1"))
            }
        }

        struct AbstainOp2;
        impl Operator for AbstainOp2 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::OutOfDistribution("test2"))
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(AbstainOp1),
                OperatorMetadata {
                    name: "Abstain1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AbstainOp2),
                OperatorMetadata {
                    name: "Abstain2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert_eq!(outcome.abstentions.len(), 2);
    }

    #[test]
    fn test_default_creates_empty_set() {
        let set = OperatorSet::default();
        assert_eq!(set.len(), 0);
        assert!(set.is_empty());
    }

    #[test]
    fn test_apply_set_abstain_then_refine() {
        struct AbstainOp;
        impl Operator for AbstainOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::InsufficientEvidence("test"))
            }
        }

        struct NoopOp;
        impl Operator for NoopOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Abstain".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(NoopOp),
                OperatorMetadata {
                    name: "Noop".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert_eq!(outcome.abstentions.len(), 1);
        assert_eq!(outcome.abstentions[0].0, "Abstain");
    }

    #[test]
    fn test_apply_set_both_noop() {
        struct NoopOp1;
        impl Operator for NoopOp1 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        struct NoopOp2;
        impl Operator for NoopOp2 {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(NoopOp1),
                OperatorMetadata {
                    name: "Noop1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(NoopOp2),
                OperatorMetadata {
                    name: "Noop2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert!(outcome.abstentions.is_empty());
    }

    #[test]
    fn test_apply_set_records_abstention_names_in_order() {
        struct AbstainOp;
        impl Operator for AbstainOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::InsufficientEvidence("test"))
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "First".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Second".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Third".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.abstentions.len(), 3);
        assert_eq!(outcome.abstentions[0].0, "First");
        assert_eq!(outcome.abstentions[1].0, "Second");
        assert_eq!(outcome.abstentions[2].0, "Third");
    }

    #[test]
    fn test_apply_set_monotonicity_const_refine() {
        let atom = Atom {
            system: OntologySystem::SNOMED,
            code: "CONST-9999".to_string(),
            preferred_term: "Test".to_string(),
            version: "0.1.0".to_string(),
        };

        let set = OperatorSet::new().register(
            Box::new(ConstRefineOperatorFixture { atom: atom.clone() }),
            OperatorMetadata {
                name: "ConstRefine".to_string(),
                version: "v1.0.0".to_string(),
            },
        );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert!(outcome.result <= h, "result should refine input");
    }

    #[test]
    fn test_apply_set_abstention_propagates_forward() {
        let atom = Atom {
            system: OntologySystem::SNOMED,
            code: "CONST-8888".to_string(),
            preferred_term: "Test2".to_string(),
            version: "0.1.0".to_string(),
        };

        let set = OperatorSet::new()
            .register(
                Box::new(AlwaysAbstainOperatorFixture),
                OperatorMetadata {
                    name: "Abstain".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(ConstRefineOperatorFixture { atom }),
                OperatorMetadata {
                    name: "ConstRefine".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert!(outcome.result <= h);
        assert_eq!(outcome.abstentions.len(), 1);
        assert_eq!(outcome.abstentions[0].0, "Abstain");
    }

    #[test]
    fn test_apply_set_empty_set_identity() {
        let set = OperatorSet::new();
        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert!(outcome.abstentions.is_empty());
    }

    #[test]
    fn test_apply_set_all_abstain_preserves_input() {
        let set = OperatorSet::new()
            .register(
                Box::new(AlwaysAbstainOperatorFixture),
                OperatorMetadata {
                    name: "A1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AlwaysAbstainOperatorFixture),
                OperatorMetadata {
                    name: "A2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AlwaysAbstainOperatorFixture),
                OperatorMetadata {
                    name: "A3".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert_eq!(outcome.abstentions.len(), 3);
    }

    #[test]
    fn test_apply_set_noop_chain_identity() {
        let set = OperatorSet::new()
            .register(
                Box::new(NoopOperatorFixture),
                OperatorMetadata {
                    name: "N1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(NoopOperatorFixture),
                OperatorMetadata {
                    name: "N2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.result, h);
        assert!(outcome.abstentions.is_empty());
    }

    #[test]
    fn test_apply_set_multiple_const_refine() {
        let atom1 = Atom {
            system: OntologySystem::SNOMED,
            code: "CONST-7777".to_string(),
            preferred_term: "T1".to_string(),
            version: "0.1.0".to_string(),
        };
        let atom2 = Atom {
            system: OntologySystem::SNOMED,
            code: "CONST-6666".to_string(),
            preferred_term: "T2".to_string(),
            version: "0.1.0".to_string(),
        };

        let set = OperatorSet::new()
            .register(
                Box::new(ConstRefineOperatorFixture {
                    atom: atom1.clone(),
                }),
                OperatorMetadata {
                    name: "R1".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(ConstRefineOperatorFixture {
                    atom: atom2.clone(),
                }),
                OperatorMetadata {
                    name: "R2".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert!(outcome.result <= h);
        let result_atoms = outcome.result.atoms();
        assert!(result_atoms.contains(&atom1));
        assert!(result_atoms.contains(&atom2));
    }

    #[test]
    fn test_operator_names_preserves_registration_order() {
        struct DummyOp;
        impl Operator for DummyOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(DummyOp),
                OperatorMetadata {
                    name: "Zebra".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(DummyOp),
                OperatorMetadata {
                    name: "Alpha".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(DummyOp),
                OperatorMetadata {
                    name: "Mike".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let names = set.operator_names();
        assert_eq!(names, vec!["Zebra", "Alpha", "Mike"]);
    }

    #[test]
    fn test_abstention_names_match_registration_order() {
        struct AbstainOp;
        impl Operator for AbstainOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Abstain(AbstainReason::InsufficientEvidence("test"))
            }
        }

        let set = OperatorSet::new()
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Zebra".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Alpha".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(AbstainOp),
                OperatorMetadata {
                    name: "Mike".to_string(),
                    version: "v1.0.0".to_string(),
                },
            );

        let h = Hyp::unknown();
        let e = test_evidence();

        let outcome = set.apply_set(&h, &e);
        assert_eq!(outcome.abstentions.len(), 3);
        assert_eq!(outcome.abstentions[0].0, "Zebra");
        assert_eq!(outcome.abstentions[1].0, "Alpha");
        assert_eq!(outcome.abstentions[2].0, "Mike");
    }

    #[test]
    #[should_panic(expected = "already registered")]
    fn test_register_duplicate_name_panics() {
        struct DummyOp;
        impl Operator for DummyOp {
            fn apply(&self, _h: &Hyp, _e: &Evidence) -> Outcome<Hyp, AbstainReason> {
                Outcome::Refined(_h.clone())
            }
        }

        let _set = OperatorSet::new()
            .register(
                Box::new(DummyOp),
                OperatorMetadata {
                    name: "Duplicate".to_string(),
                    version: "v1.0.0".to_string(),
                },
            )
            .register(
                Box::new(DummyOp),
                OperatorMetadata {
                    name: "Duplicate".to_string(),
                    version: "v2.0.0".to_string(),
                },
            );
    }
}