interface SearchBetweennessOptions {
    directed?: boolean;
    weight?(edge: EdgeSingular): number;
}

Properties

Methods

Properties

directed?: boolean

A boolean indicating whether the directed indegree and outdegree centrality is calculated (true) or whether the undirected centrality is calculated (false, default).

Methods