summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2017-01-17 00:27:42 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2017-01-17 00:27:42 -0500
commit9e5ae3a1b40513320126d87e3914d4456a38e9d9 (patch)
treeebcaf19da078bbf38ec19a92f9e90ce95e910bd0 /src
parentd8a032e74d269b2356ba7d7af228ebddf1f760ab (diff)
downloadfuse_networks-9e5ae3a1b40513320126d87e3914d4456a38e9d9.tar.gz
fuse_networks-9e5ae3a1b40513320126d87e3914d4456a38e9d9.tar.bz2
fuse_networks-9e5ae3a1b40513320126d87e3914d4456a38e9d9.zip
fixed cluster finding method
Diffstat (limited to 'src')
-rw-r--r--src/get_dual_clusters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/get_dual_clusters.c b/src/get_dual_clusters.c
index 78bf185..6090fb8 100644
--- a/src/get_dual_clusters.c
+++ b/src/get_dual_clusters.c
@@ -2,7 +2,7 @@
#include "fracture.h"
unsigned int *get_clusters(net_t *instance, cholmod_common *c) {
- cholmod_sparse *s_dual = gen_adjacency(instance, true, false, true, c);
+ cholmod_sparse *s_dual = gen_adjacency(instance, true, false, false, c);
unsigned int *dual_marks = find_components(s_dual, 0);
CHOL_F(free_sparse)(&s_dual, c);