code wiki / _hdl_build / nx_ecosystem_compare.nx

nx_ecosystem_compare.nx

buildroot/runtime/_hdl_build/nx_ecosystem_compare.nx

2235 B45 linesdepth 3pulls 3 transitivereach 1 importersview sourcekind librarytopic ecosystem
docsdependenciesstructsconstsfunctions

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

nx_maturity_auditor.nx nx_syscalls.nx nx_ecosystem_compare.nx nx_landscape_sweep_test.nx

imports: nx_maturity_auditor.nxnx_syscalls.nx

imported by: nx_landscape_sweep_test.nx

structs

none

consts

11const PLAT_LINUX: i64 = 1
12const PLAT_WINDOWS: i64 = 2
13const PLAT_ANDROID: i64 = 3
14const PLAT_APPLE: i64 = 4

functions

16func eco_represented(level: i64) -> i64 { if level != MAT_ABSENT { return 1 } return 0 }
called by 1: eco_breadth_permil
17func eco_functional_plus(level: i64) -> i64 { if level >= MAT_FUNCTIONAL { return 1 } return 0 }
called by 1: eco_usable_permil
18func eco_competitive(level: i64) -> i64 { if level >= MAT_SCLASS { return 1 } return 0 }
called by 1: eco_depth_permil
21func eco_permil(count: i64, total: i64) -> i64 { if total <= 0 { return 0 } return count * 1000 / total }
24func eco_breadth_permil(levels: *i64, n: i64) -> i64
called by 1: main calls 2: eco_representedeco_permil
30func eco_usable_permil(levels: *i64, n: i64) -> i64
called by 1: main calls 2: eco_functional_pluseco_permil
36func eco_depth_permil(levels: *i64, n: i64) -> i64
called by 1: main calls 2: eco_competitiveeco_permil
41func eco_count_at(levels: *i64, n: i64, level: i64) -> i64
called by 1: main