From b49bff32fc34f20abc48e0e771331529bb2e8f58 Mon Sep 17 00:00:00 2001 From: nindanaoto Date: Thu, 1 Aug 2024 13:26:52 +0000 Subject: [PATCH] Make TLWE aligned --- include/params.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/params.hpp b/include/params.hpp index 81c954a..2eca7c8 100644 --- a/include/params.hpp +++ b/include/params.hpp @@ -74,7 +74,7 @@ template using Key = std::array; template -using TLWE = std::array; +using TLWE = aligned_array; template using Polynomial = std::array;