projects
/
synclust.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6660d73939865e64f1ad749e22c139cc569d914e
[synclust.git]
/
src
/
sources
/
connexity.h
1
#ifndef SYNCLUST_CONNEXITY_H
2
#define SYNCLUST_CONNEXITY_H
3
4
// Core algorithm to find connected components in an undirected graph
5
int
*
getConnectedComponents_core
(
6
int
**
NIix
,
7
int
*
lengthNIix
,
8
int
n
9
);
10
11
#endif