Curated synthetic entries (not in the upstream corpus).
()
| 191 | |
| 192 | /** Curated synthetic entries (not in the upstream corpus). */ |
| 193 | function loadInjected(): Map<string, Entry> { |
| 194 | const overrides = JSON.parse(fs.readFileSync(OVERRIDES, 'utf8')); |
| 195 | const out = new Map<string, Entry>(); |
| 196 | for (const e of (overrides.inject ?? []) as Entry[]) out.set(e.id, e); |
| 197 | return out; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Render the upper half-plane membership `Element(x, HH)` as the explicit part |
no test coverage detected