Skip to content

Commit

Permalink
fixed evil permutation overflow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lambday authored and karlnapf committed Jul 4, 2016
1 parent c4d66b5 commit 39b8be6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -34,8 +34,8 @@ using namespace mmd;

struct WithinBlockPermutationBatch::terms_t
{
std::array<float32_t, 3> term{};
std::array<float32_t, 3> diag{};
std::array<float64_t, 3> term{};
std::array<float64_t, 3> diag{};
};

WithinBlockPermutationBatch::WithinBlockPermutationBatch(index_t nx, index_t ny, index_t N, EStatisticType type)
Expand Down

0 comments on commit 39b8be6

Please sign in to comment.