summaryrefslogtreecommitdiff
path: root/src/graph_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph_create.c')
-rw-r--r--src/graph_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph_create.c b/src/graph_create.c
index 1c06052..635b12b 100644
--- a/src/graph_create.c
+++ b/src/graph_create.c
@@ -11,7 +11,7 @@ uint_t *get_spanning_edges(uint_t num_edges, uint_t *edges_to_verts, double *ver
double v1y, v2y;
v1y = vert_coords[2 * v1 + 1];
v2y = vert_coords[2 * v2 + 1];
- if ((fabs(v1y - v2y) < 0.5) && ((v1y < cut && v2y > cut) || (v1y > cut && v2y < cut))) {
+ if ((fabs(v1y - v2y) < 0.5) && ((v1y <= cut && v2y > cut) || (v1y >= cut && v2y < cut))) {
spanning_edges[*n] = i;
(*n)++;
}