summaryrefslogtreecommitdiff
path: root/aztec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'aztec.hpp')
-rw-r--r--aztec.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/aztec.hpp b/aztec.hpp
index 9dc3139..dc4fb41 100644
--- a/aztec.hpp
+++ b/aztec.hpp
@@ -1,8 +1,8 @@
-#include <vector>
#include <stack>
+#include <vector>
-#include "randutils/randutils.hpp"
#include "pcg-cpp/include/pcg_random.hpp"
+#include "randutils/randutils.hpp"
#include "blossom5-v2.05.src/PerfectMatching.h"
@@ -102,7 +102,7 @@ public:
Real logPartitionFunction = 0;
for (unsigned i = 1; i <= n; i++) {
-#pragma omp parallel for reduction(+:logPartitionFunction)
+#pragma omp parallel for reduction(+ : logPartitionFunction)
for (unsigned j = 0; j < pow(i, 2); j++) {
auto [e1, e2, e3, e4] = face(i, j);