File size: 687 Bytes
94da461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""SANDBOX trie re-confirmation: rebuild the n100 trie WITHOUT and WITH the

temp merged injections and report the 5 fix targets + LEAVE spine. Points the

verifier's STAGING at temp/out/_staging_merged_injections.jsonl. Read-only.



Run from repo root:  python -u temp/injection_sandbox/verify_trie.py

"""
from __future__ import annotations

import sys
from pathlib import Path

ROOT = Path(__file__).resolve().parents[2]
sys.path.insert(0, str(ROOT))
sys.path.insert(0, str(ROOT / "systemUpgrade"))

import scripts._verify_injection as V  # noqa: E402

V.STAGING = Path(__file__).resolve().parent / "out" / "_staging_merged_injections.jsonl"
raise SystemExit(V.main())