Skip to content

Commit 1a34aad

Browse files
committed
c/hv.c (fpli_hv_ge5d, hv_recursive): Remove ignore condition that is sensitive to rounding errors.
1 parent 35a178a commit 1a34aad

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

c/hv.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -473,9 +473,6 @@ hv_recursive(dlnode_t * restrict list, dimension_t dim, size_t c,
473473
if (p1->ignore == dim - 1) {
474474
DEBUG1(debug_counter[2]++);
475475
p1->ignore = dim;
476-
} else if (hypera <= p1_prev->area[d_stop]) {
477-
DEBUG1(debug_counter[3]++);
478-
p1->ignore = dim;
479476
}
480477
}
481478
p1->area[d_stop] = hypera;
@@ -551,9 +548,6 @@ fpli_hv_ge5d(dlnode_t * restrict list, dimension_t dim, size_t c,
551548
if (p1->ignore == dim - 1) {
552549
DEBUG1(debug_counter[4]++);
553550
p1->ignore = dim;
554-
} else if (hypera <= p1_prev->area[d_stop]) {
555-
DEBUG1(debug_counter[5]++);
556-
p1->ignore = dim;
557551
}
558552
p1->area[d_stop] = hypera;
559553
if (p0->x == NULL) {

0 commit comments

Comments
 (0)