Skip to content

Commit

Permalink
Make TLWE aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
nindanaoto committed Aug 1, 2024
1 parent 71e0a9b commit b49bff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/params.hpp
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ template <class P>
using Key = std::array<typename P::T, P::k * P::n>;

template <class P>
using TLWE = std::array<typename P::T, P::k * P::n + 1>;
using TLWE = aligned_array<typename P::T, P::k * P::n + 1>;

template <class P>
using Polynomial = std::array<typename P::T, P::n>;

0 comments on commit b49bff3

Please sign in to comment.