From 8f21fbc6ab150eada58414a13a60574f7040f834 Mon Sep 17 00:00:00 2001 From: Andres Rios Tascon Date: Mon, 29 Apr 2024 12:25:16 -0400 Subject: [PATCH] Fixed asymmetric removal of duplicates --- SDL/Kernels.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SDL/Kernels.h b/SDL/Kernels.h index e6d88642..4975c202 100644 --- a/SDL/Kernels.h +++ b/SDL/Kernels.h @@ -232,7 +232,8 @@ namespace SDL { if (nMatched >= 7) { if (score_rphisum1 >= score_rphisum2) { rmQuintupletFromMemory(quintupletsInGPU, ix); - break; + } else { + rmQuintupletFromMemory(quintupletsInGPU, jx); } } }