summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/ising.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ising.cpp b/examples/ising.cpp
index f187081..c6e75fb 100644
--- a/examples/ising.cpp
+++ b/examples/ising.cpp
@@ -78,8 +78,8 @@ int main(int argc, char *argv[]) {
// print the result of our measurements
std::cout << "Wolff complete!\nThe average energy per site was " << A.avgE() / S.nv
- << ".\nThe average magnetization per site was " << A.avgM() / S.nv
- << ".\nThe average cluster size per site was " << A.avgC() / S.nv << ".\n";
+ << ".\nThe average magnetization per site was " << A.avgM() / S.nv
+ << ".\nThe average cluster size per site was " << A.avgC() / S.nv << ".\n";
// exit
return 0;