summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-21 00:33:37 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-10-21 00:33:37 -0400
commita57928e1ef11d54a3e8b6b6de42013952b1cbf8e (patch)
tree56d7034ab3db16c5dcd05d087a4b2613f6f2784d
parentaba98042aec5bb97d4f5d0f41db98bf942b9df8f (diff)
downloadc++-a57928e1ef11d54a3e8b6b6de42013952b1cbf8e.tar.gz
c++-a57928e1ef11d54a3e8b6b6de42013952b1cbf8e.tar.bz2
c++-a57928e1ef11d54a3e8b6b6de42013952b1cbf8e.zip
better indentation
-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;