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
//! Deduction operators on hypotheses.
//!
//! Implements DEF-PS-07 (Operator trait interface).
use crate::;
/// Evidence: a typed observation packet for operator input.
///
/// Implements DEF-MP-11 (Evidence type).
///
/// # v0.1.0 Simplification
///
/// Evidence is a unit marker in this version.
/// In v0.2.0+, Evidence will carry specific observation data (e.g., lab values, vital signs).
;
/// A deduction operator: a function from hypothesis and evidence to a refined hypothesis or abstention.
///
/// Operators are the primary mechanism for refining clinical hypotheses using deductive logic.
/// An operator encapsulates sound clinical reasoning (e.g., SOFA-3 respiratory scoring).
///
/// Implements DEF-PS-07 (Operator interface).