From 5f283d7fd57e8668a6e6875ae40eb9c527de6bfd Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Thu, 25 Jan 2024 14:18:06 +0100 Subject: [PATCH] re-enable special case --- src/fmpz_vec/dot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmpz_vec/dot.c b/src/fmpz_vec/dot.c index 3c1f86dbfc..548c71bf2a 100644 --- a/src/fmpz_vec/dot.c +++ b/src/fmpz_vec/dot.c @@ -164,7 +164,7 @@ _fmpz_vec_dot_general(fmpz_t res, const fmpz_t initial, int subtract, slong i; - if (len <= 1 && initial == NULL) + if (len <= 1) { if (initial == NULL) {