code wiki / _hdl_build / nx_activities_gate.nx

nx_activities_gate.nx

buildroot/runtime/_hdl_build/nx_activities_gate.nx

8125 B137 linesdepth 6pulls 15 transitivereach 0 importersview sourcekind gate/proof
docsdependenciesstructsconstsfunctions

about

nx_activities_gate.nx -- GATE: REAL value for LOTS of popular activities. T1 reference prices set (grounded w/ sources). T2 compost value = real ref x quantity (not invented). T3 cook-from-pantry = NET savings (takeout avoided minus home cost). T4 multi-activity total = the real seasonal positive. T5 HONEST: zero-quantity and unknown activity yield 0 (never a fabricated number). T6 composes with nx_rewards (the total becomes a REAL reward) + renders + ships. license_tier: ORIGINAL

dependencies 5 imports · 0 importers

nx_activities.nx nx_rewards.nx nx_publisher.nx nx_seg_store.nx nx_syscalls.nx nx_activities_gate.nx

imports: nx_activities.nxnx_rewards.nxnx_publisher.nxnx_seg_store.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main g_p sys_write sys_mmap g_cat g_num sys_mmap ↻ sys_now_us sys_mmap ↻ sys_clock_gettime_mono ac_set_ref sys_mmap ↻ as_append fd_apnum sys_mmap ↻ ac_put fd_streq_store sys_mmap ↻ ss_get sys_mmap ↻ ss_scan sys_mmap ↻ ss_manifest_dyn ss_scan_seglist ss_begin ss_begin_cap sys_mmap ↻ ss_add ss_add2 ss_w32 ss_len fd_seg_next sys_mmap ↻ ss_manifest ss_manifest_file sys_mmap ↻ ss_cat ss_readall ss_commit ss_segid_ok

structs

none

consts

12const AG_ACT: *u8 = "knowledge/store/act-"
13const AG_REWARD: *u8 = "knowledge/store/actrw-reward-"
14const AG_STAGE_FILE: *u8 = "knowledge/staging/act/positives.html"
15const AG_LIVE_FILE: *u8 = "knowledge/publish/act-live/positives.html"

functions

17func g_p(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 1: main calls 1: sys_write
18func g_i(v: i64) -> i64
called by 1: main calls 2: sys_mmapsys_write
26func g_exists(path: *u8) -> i64 { let fd: i64 = sys_openat_rd(path); if fd < 0 { return 0 } sys_close(fd); return 1 }
called by 1: main calls 2: sys_openat_rdsys_close
27func g_cat(dst: *u8, off: i64, s: *u8) -> i64 { var i: i64 = 0; while s[i] != (0 as u8) { dst[off+i] = s[i]; i = i + 1 } return off + i }
called by 1: main
28func g_num(dst: *u8, off: i64, n: i64) -> i64
called by 1: main calls 1: sys_mmap
37func main() -> i64