code wiki / _hdl_build / nx_ecosystem_compare.nx
nx_ecosystem_compare.nx
buildroot/runtime/_hdl_build/nx_ecosystem_compare.nx
about
nx_ecosystem_compare.nx -- the competitive-landscape evaluator: how does the Nishi stack's WIDTH
(breadth = how many layers we even represent) and DEPTH (where we actually compete at S-class) stack up
against whole platform ecosystems -- Linux, Windows, Android, Apple (operator: "know how we compete
against the whole windows or linux or android or apple ecosystems and stacks"). Each established OS is
PRODUCTION+ on every dimension; our gap is (a) the ABSENT dimensions (OS fundamentals we don't have) and
(b) the TOY/FUNCTIONAL dimensions that need hardening + triangulated S-class wins. license_tier: ORIGINAL
dependencies 2 imports · 1 importers
imports: nx_maturity_auditor.nxnx_syscalls.nx
imported by: nx_landscape_sweep_test.nx
structs
| none |
consts
| 11 | const PLAT_LINUX: i64 = 1 |
| 12 | const PLAT_WINDOWS: i64 = 2 |
| 13 | const PLAT_ANDROID: i64 = 3 |
| 14 | const PLAT_APPLE: i64 = 4 |
functions
| 16 | func eco_represented(level: i64) -> i64 { if level != MAT_ABSENT { return 1 } return 0 } called by 1: eco_breadth_permil |
| 17 | func eco_functional_plus(level: i64) -> i64 { if level >= MAT_FUNCTIONAL { return 1 } return 0 } called by 1: eco_usable_permil |
| 18 | func eco_competitive(level: i64) -> i64 { if level >= MAT_SCLASS { return 1 } return 0 } called by 1: eco_depth_permil |
| 21 | func eco_permil(count: i64, total: i64) -> i64 { if total <= 0 { return 0 } return count * 1000 / total } |
| 24 | func eco_breadth_permil(levels: *i64, n: i64) -> i64 |
| 30 | func eco_usable_permil(levels: *i64, n: i64) -> i64 |
| 36 | func eco_depth_permil(levels: *i64, n: i64) -> i64 |
| 41 | func eco_count_at(levels: *i64, n: i64, level: i64) -> i64 called by 1: main |