code wiki / _hdl_build / nx_exceed_standard.nx

nx_exceed_standard.nx

buildroot/runtime/_hdl_build/nx_exceed_standard.nx

2699 B45 linesdepth 2pulls 2 transitivereach 6 importersview sourcekind librarytopic exceed
docsdependenciesstructsconstsfunctions

about

nx_exceed_standard.nx -- the TEAM-WIDE exceed standard (operator 2026-06-21: "exceed is on capability, efficiency, speed etc; the hidden elements matter; we need customer-facing AND internal-only S-class exceed"). The shared rubric every team member references -- the researcher (what to probe), the PM/census (how to grade), every *_exceed gate. EXCEED DIMENSIONS (an exceed claim must rest on at least one, MEASURED): CAPABILITY (does the job better / detects what others can't), EFFICIENCY (fewer bytes / less memory / fewer requests / less ENERGY[power] AND human CLARITY -- "can a person understand all those" -- because unclear output wastes a person's energy), SPEED (lower latency / faster build), CORRECTNESS (output measurably more correct). FLOOR (NOT an exceed by itself): SOVEREIGNTY -- no-3rd-party/no-lock-in/ no-JS/self-hosted/deterministic. SURFACES (BOTH must reach S-class): CUSTOMER-FACING (what users see/experience) and INTERNAL-ONLY (the hidden tools/engines/dashboards the team+operator use). [[feedback-capability-is-the-exceed-not-sovereignty]] license_tier: ORIGINAL

dependencies 1 imports · 6 importers

nx_syscalls.nx nx_exceed_standard.nx nx_clarity_gate.nx nx_editor_validate_gate.nx nx_exceed_standard_gate.nx nx_internal_sweep_gate.nx nx_site_import_gate.nx nx_site_migrate_gate.nx

imports: nx_syscalls.nx

imported by: nx_clarity_gate.nxnx_editor_validate_gate.nxnx_exceed_standard_gate.nxnx_internal_sweep_gate.nxnx_site_import_gate.nxnx_site_migrate_gate.nx

structs

none

consts

14const ES_SOVEREIGNTY_FLOOR: i64 = 0 // the FLOOR -- never an exceed by itself
15const ES_CAPABILITY: i64 = 1
16const ES_EFFICIENCY: i64 = 2
17const ES_SPEED: i64 = 3
18const ES_CORRECTNESS: i64 = 4
20const ES_CUSTOMER: i64 = 1
21const ES_INTERNAL: i64 = 2

functions

24func es_is_exceed_dim(dim: i64) -> i64 { if dim >= ES_CAPABILITY { if dim <= ES_CORRECTNESS { return 1 } } return 0 }
25func es_dim_name(dim: i64) -> *u8
32func es_surface_name(s: i64) -> *u8 { if s == ES_CUSTOMER { return "customer-facing" as *u8 } if s == ES_INTERNAL { return "internal-only" as *u8 } return "?" as *u8 }
37func es_is_sclass_exceed(dim: i64, surface: i64, our: i64, inc: i64, n: i64) -> i64