You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
768 B

4 months ago
import type { ClusterData, GraphData } from './types';
/**
* i-louvain +
* @param graphData
* @param directed false
* @param weightPropertyName
* @param threshold
* @param propertyKey
* @param involvedKeys key集合
* @param uninvolvedKeys key集合
* @param inertialWeight
*/
declare const iLouvain: (graphData: GraphData, directed?: boolean, weightPropertyName?: string, threshold?: number, propertyKey?: string, involvedKeys?: string[], uninvolvedKeys?: string[], inertialWeight?: number) => ClusterData;
export default iLouvain;