Skip to content

Commit a90e4b8

Browse files
committed
* c/nondominated_kung.h: Simplify implementation by removing nondom and
setting rows to NULL instead. (find_nondominated_set_agree_kung): Rename as find_nondominated_set_kung.
1 parent ba9909d commit a90e4b8

2 files changed

Lines changed: 246 additions & 343 deletions

File tree

c/nondominated.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ find_nondominated_set_(const double * restrict points, size_t size, dimension_t
705705
} else if (dim == 3) {
706706
new_size = find_nondominated_set_3d_(pp, size, keep_weakly, nondom);
707707
} else {
708-
new_size = find_nondominated_set_agree_kung(pp, size, dim, keep_weakly, nondom);
708+
new_size = find_nondominated_set_kung(pp, size, dim, keep_weakly, nondom);
709709
}
710710
if (pp != points)
711711
free((void *) pp);

0 commit comments

Comments
 (0)