nx_graph.nx
buildroot/runtime/nx_graph.nx
about
nx_graph.nx -- foundational graph theory primitives.
Adjacency matrix representation for small graphs (caller manages
the n x n array as flat i64 buffer).
genealogy_id: euler_1736 (konigsberg_bridges) + classical
lineage_id: zfc_separation + relation_symmetry
axioms: NX_AX_ZFC_SEPARATION, NX_AX_REL_SYMMETRY
dependencies 2 imports · 3 importers
imports: syscalls.nxnx_axioms.nx
imported by: nx_qed_freek.nxnx_theorems6_test.nxnx_triangulation_graph.nx
structs
| none |
consts
| none |
functions
| 20 | func nx_graph_degree(adj: *i64, n: i64, v: i64) -> i64 |
| 33 | func nx_graph_edge_count(adj: *i64, n: i64) -> i64 called by 1: main |
| 52 | func nx_graph_has_eulerian_circuit(adj: *i64, n: i64) -> i64 |
| 64 | func nx_graph_bfs_count(adj: *i64, n: i64, start: i64) -> i64 |
| 94 | func nx_graph_is_connected(adj: *i64, n: i64) -> i64 |
| 104 | func nx_graph_friendship_politician(adj: *i64, n: i64) -> i64 |