From 831088aad974a3e7a4adfa98350ed3a46120d7ef Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 26 Jan 2024 10:25:48 -0800 Subject: [PATCH] Leave in the faster version for now --- ConflictSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 0231454..ea88a25 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -858,7 +858,7 @@ int getChildLeq(Node *self, int child) { } else if (self->type == Type::Node48) { auto *self48 = static_cast(self); // TODO the plain loop is faster? -#if defined(HAS_AVX) || defined(HAS_ARM_NEON) +#if 0 && (defined(HAS_AVX) || defined(HAS_ARM_NEON)) int i = child; if (i < 0) { return -1;