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
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! # `CognitionSignal` - the scalar that flows around the ThinkLoop.
//!
//! Each iteration of the closed-loop controller produces one `CognitionSignal`.
//!
//! ## Fields
//!
//! | Field | Control-theory analogue | Description |
//! |---------------|--------------------------------|-----------------------------------------------|
//! | `step` | sample index k | Loop iteration counter (0-based) |
//! | `error` | e(k) = setpoint - output | Jaccard distance ∈ [0, 1] to goal |
//! | `gain` | Kp + Ki·∑e | Scheduled gain for this step |
//! | `integral` | ∑e(0..k) | Accumulated error (anti-windup clamped) |
//! | `reward` | r(k) = (1 - e) · gain | Positive reinforcement delivered this step |
//! | `query` | reference input r | Query sent to the `SearchOracle` |
//! | `observation` | plant output y | Raw text from `SearchOracle` (may be empty) |
//!
//! ## Examples
//!
//! ```rust
//! use lmm_agent::cognition::signal::CognitionSignal;
//!
//! let sig = CognitionSignal::new(0, "What is Rust?".into(), "Rust is a systems language.".into(), 1.0, 0.0);
//! assert!(sig.error >= 0.0 && sig.error <= 1.0);
//! assert!(sig.reward >= 0.0);
//! ```
//!
//! ## See Also
//!
//! * [Jaccard index - Wikipedia](https://en.wikipedia.org/wiki/Jaccard_index)
//! * [Signal processing - Wikipedia](https://en.wikipedia.org/wiki/Signal_processing)
use HashSet;
/// The scalar signal produced by one iteration of the closed-loop controller.
///
/// # Examples
///
/// ```rust
/// use lmm_agent::cognition::signal::CognitionSignal;
///
/// let sig = CognitionSignal::new(0, "goal text".into(), "goal text".into(), 1.0, 0.0);
/// // Perfect match → error = 0.0
/// assert_eq!(sig.error, 0.0);
/// assert!(sig.reward > 0.0);
/// ```
/// Computes the **Jaccard token-overlap distance** between `goal` and `text`.
///
/// Returns a value in [0, 1]:
/// - `0.0` - identical token sets (fully converged).
/// - `1.0` - disjoint token sets (no overlap at all).
///
/// Case-insensitive; punctuation is stripped.
///
/// # Examples
///
/// ```rust
/// use lmm_agent::cognition::signal::error_from_texts;
///
/// assert_eq!(error_from_texts("hello world", "hello world"), 0.0);
/// assert_eq!(error_from_texts("foo", "bar"), 1.0);
/// let e = error_from_texts("Rust is fast", "Rust is safe and fast");
/// assert!(e < 1.0 && e > 0.0);
/// ```
/// Lowercases, strips punctuation, splits on whitespace, and deduplicates tokens.
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.