/** * Property-Based Tests for Graph Adapters * * Uses fast-check to verify graph adapter invariants hold across * randomized graph structures. Tests fundamental graph properties * that must hold regardless of implementation: * * - Degree consistency: getDegree() matches neighbor count * - Undirected symmetry: if A → B then B → A * - Directed asymmetry: A → B doesn't imply B → A * - Degree sum: sum of degrees = 2 * edges (undirected) or edges (directed) * - Node preservation: all nodes in edges appear in node list */ export {}; //# sourceMappingURL=graph-adapters.property.unit.test.d.ts.map