summaryrefslogtreecommitdiff
path: root/src/correlations.c
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jkentdobias@g.hmc.edu>2016-09-09 14:39:09 -0400
committerJaron Kent-Dobias <jkentdobias@g.hmc.edu>2016-09-09 14:39:09 -0400
commit265704951eb4736a4ef7eb267884837185bd4a15 (patch)
treefc67a785d536757afa912241d14fd4454a2b8e65 /src/correlations.c
parent4b6b26a0371ec1f5c82f226622c543a29c1502cb (diff)
downloadfuse_networks-265704951eb4736a4ef7eb267884837185bd4a15.tar.gz
fuse_networks-265704951eb4736a4ef7eb267884837185bd4a15.tar.bz2
fuse_networks-265704951eb4736a4ef7eb267884837185bd4a15.zip
removed parallel fors that were breaking things
Diffstat (limited to 'src/correlations.c')
-rw-r--r--src/correlations.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/correlations.c b/src/correlations.c
index 98106dd..f403ab8 100644
--- a/src/correlations.c
+++ b/src/correlations.c
@@ -243,7 +243,6 @@ uint_t **get_dists(const graph_t *network) {
uint_t nv = network->dnv;
uint_t **dists = (uint_t **)malloc(nv * sizeof(uint_t *));
- #pragma omp parallel for
for (uint_t i = 0; i < nv; i++) {
dists[i] = dijkstra(network, i);
}