first commit
[synclust.git] / src / sources / connexity.h
CommitLineData
15d1825d
BA
1#ifndef SYNCLUST_CONNEXITY_H
2#define SYNCLUST_CONNEXITY_H
3
4// Core algorithm to find connected components in an undirected graph
5int* getConnectedComponents_core(
6 int** NIix,
7 int* lengthNIix,
8 int n
9);
10
11#endif