/** * Network Analysis Properties * * Properties from network science: scale-free, small-world, community structure. */ /** Scale-free property (power-law degree distribution) */ export type ScaleFree = { kind: "scale_free"; exponent?: number; } | { kind: "not_scale_free"; }; /** Small-world property (high clustering + short paths) */ export type SmallWorld = { kind: "small_world"; rewireProbability?: number; meanDegree?: number; } | { kind: "not_small_world"; } | { kind: "unconstrained"; }; /** Modular/community structure property */ export type CommunityStructure = { kind: "modular"; numCommunities?: number; intraCommunityDensity?: number; interCommunityDensity?: number; } | { kind: "non_modular"; } | { kind: "unconstrained"; }; //# sourceMappingURL=network.d.ts.map