code wiki / _hdl_build / nx_andelinwest_search.nx
nx_andelinwest_search.nx source
↩ module page · 23 lines · 1433 B
1// nx_andelinwest_search.nx -- RETIRED + DISARMED 2026-06-16.
2//
3// This WAS a hardcoded 6-string demo that SELF-SCORED "REFEREE=EXCEED" / "search track=9" / "S-class-EXCEEDS
4// on the rubric" -- the exact self-grading the operator's doctrine forbids: a verdict must be MEASURED by an
5// organ over real artifacts, never asserted by the thing being graded. (See [[feedback-no-wave-measured-exceed]]
6// / [[feedback-author-by-organ-not-claude]].)
7//
8// REPLACED BY: nx_andelinwest_search_gate.nx -- which rebuilds the andelinwest index from the REAL site content
9// (knowledge/index/andelinwest_src.tsv, derived from web_assets/_sites/andelinwest.site) through the reusable
10// ingestor (nx_onsite_index), then forks the LIVE client (nx_onsite_search) and MEASURES that each of the
11// site's own search-box example queries -- divorce / will / contract / injury -- lands the right practice page
12// at rank #1. The verdict comes from the live client's output, not from this file. No self-score survives.
13// license_tier: ORIGINAL
14import "nx_syscalls.nx"
15
16func main() -> i64 {
17 let m: *u8 = "nx_andelinwest_search: RETIRED -- the self-scored EXCEED demo is gone. Real measured gate = nx_andelinwest_search_gate (rebuilds the index from real andelinwest.site content + grades the live nx_onsite_search client).\n" as *u8
18 var n: i64 = 0
19 while m[n] != (0 as u8) { n = n + 1 }
20 sys_write(1, m, n)
21 sys_exit(0)
22 return 0
23}