code wiki / _hdl_build / nx_builder_authors_eval_triangle.nx

nx_builder_authors_eval_triangle.nx source

↩ module page · 15 lines · 866 B

1// nx_builder_authors_eval_triangle.nx -- the BUILDER authors the EVAL TRIANGULATION platform rung 1 2// (operator 2026-06-10: local models + team's math measurements + detector-inversion + operator flags, 3// triangulated for pattern recognition; pure Nishi, append-only Nishi log storage, NO SQL, NO py). 4// license_tier: ORIGINAL 5import "nx_module_author_data.nx" 6import "nx_syscalls.nx" 7func _bet(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } 8func main() -> i64 { 9 _bet("BUILDER authors EVAL triangulation rung 1 (M/V/O lanes -> pattern verdicts)\n" as *u8) 10 let fd: i64 = sys_openat_wr("runtime/_hdl_build/_eval_triangle_authored.nx" as *u8, 0x1a4) 11 ma_emit_eval_triangle(fd) 12 sys_close(fd) 13 _bet(" -> _eval_triangle_authored.nx authored; Engineer gates next (KAT)\n" as *u8) 14 sys_exit(0); return 0 15}