ParsedPajek
Defined in: network/pajek.ts:11
Edge-list ingestion (sub-issue #99 / epic #98).
Maps arbitrary node labels to dense 0..n-1 indices in first-seen order,
so downstream SoA/CSR buffers (see ./graph.js) stay compact.
Extends
Section titled “Extends”Properties
Section titled “Properties”directed
Section titled “directed”directed:
boolean
Defined in: network/pajek.ts:13
True when the file declared *Arcs / *Arcslist (directed edges).
labels
Section titled “labels”labels:
string[]
Defined in: network/parse.ts:16
Dense index → original node label.
Inherited from
Section titled “Inherited from”nodeCount
Section titled “nodeCount”nodeCount:
number
Defined in: network/parse.ts:9
Inherited from
Section titled “Inherited from”positions?
Section titled “positions?”
optionalpositions?:Float32Array<ArrayBufferLike>
Defined in: network/pajek.ts:15
Interleaved [x, y, …] layout coordinates from *Vertices, present only if any were given.
source
Section titled “source”source:
Uint32Array
Defined in: network/parse.ts:11
Directed edge endpoints as dense node indices.
Inherited from
Section titled “Inherited from”target
Section titled “target”target:
Uint32Array
Defined in: network/parse.ts:12
Inherited from
Section titled “Inherited from”weight
Section titled “weight”weight:
Float32Array
Defined in: network/parse.ts:14
Per-edge weight; defaults to 1 when no third column is present.