Skip to content

Commit

Permalink
Fix bug in Waksman permutation on Linux on ARM.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkskeller committed Jul 24, 2024
1 parent 5c4382c commit a3837c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Waksman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ vector<vector<bool> > Waksman::configure(const vector<int>& perm)
return {{perm[0] == 1, perm[0] == 1}};

vector<bool> I(n / 2);
vector<char> O(n / 2, -1);
vector<int> O(n / 2, -1);
vector<int> p0(n / 2, -1), p1(n / 2, -1), inv_perm(n);

for (int i = 0; i < n; i++)
Expand Down

0 comments on commit a3837c5

Please sign in to comment.