Leave in the faster version for now

This commit is contained in:
2024-01-26 10:25:48 -08:00
parent b8de633ca1
commit 831088aad9

View File

@@ -858,7 +858,7 @@ int getChildLeq(Node *self, int child) {
} else if (self->type == Type::Node48) { } else if (self->type == Type::Node48) {
auto *self48 = static_cast<Node48 *>(self); auto *self48 = static_cast<Node48 *>(self);
// TODO the plain loop is faster? // 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; int i = child;
if (i < 0) { if (i < 0) {
return -1; return -1;