summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-06 15:17:52 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-06 15:17:52 -0400
commitdc72eb1fa4a476eade0ade98a463e7c96000fb0d (patch)
treea7b18ebac5cf68e9ce908a79b9cfceaf498f97b6
parent31f4244352b5e68eed770090419541d469f7f999 (diff)
downloadc++-dc72eb1fa4a476eade0ade98a463e7c96000fb0d.tar.gz
c++-dc72eb1fa4a476eade0ade98a463e7c96000fb0d.tar.bz2
c++-dc72eb1fa4a476eade0ade98a463e7c96000fb0d.zip
removed debug print statement
-rw-r--r--src/wolff.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wolff.cpp b/src/wolff.cpp
index 85df357..f685129 100644
--- a/src/wolff.cpp
+++ b/src/wolff.cpp
@@ -107,9 +107,6 @@ int main(int argc, char *argv[]) {
orthogonal_t <2, double> step;
generate_rotation<2>(r, &step);
- printf("(%g %g) . (%g %g) = %g or %g, H = %g\n\n", s.spins[0].x[0], s.spins[0].x[1], s.spins[1].x[0], s.spins[1].x[1], dot(s.spins[0], s.spins[1]), s.J(s.spins[0],s.spins[1]), s.H(s.spins[0]));
-
- getchar();
cluster_size = flip_cluster <orthogonal_t <2, double>, vector_t <2, double>> (&s, v0, step, r);
free_spin(step);