summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-12 10:55:36 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-12 10:55:36 -0400
commitc5497d08326bf743f6394e86f1b4d19b088fca38 (patch)
treeacdee5538cee31917bb39c6b0d007f41ff2d6bbb
parent8a06cf91fbb02684059bb69f229acaa7f9c501b3 (diff)
downloadc++-c5497d08326bf743f6394e86f1b4d19b088fca38.tar.gz
c++-c5497d08326bf743f6394e86f1b4d19b088fca38.tar.bz2
c++-c5497d08326bf743f6394e86f1b4d19b088fca38.zip
fixed inidous bug in wolff_heisenberg's metadata-
-rw-r--r--src/wolff_heisenberg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wolff_heisenberg.cpp b/src/wolff_heisenberg.cpp
index b073240..aed4156 100644
--- a/src/wolff_heisenberg.cpp
+++ b/src/wolff_heisenberg.cpp
@@ -54,7 +54,7 @@ int main(int argc, char *argv[]) {
FILE *outfile_info = fopen("wolff_metadata.txt", "a");
- fprintf(outfile_info, "<| \"ID\" -> %lu, \"MODEL\" -> \"HEISENBERG\", q -> \"3\", \"D\" -> %" PRID ", \"L\" -> %" PRIL ", \"NV\" -> %" PRIv ", \"NE\" -> %" PRIv ", \"T\" -> %.15f, \"H\" -> {", timestamp, D, L, L * L, D * L * L, T);
+ fprintf(outfile_info, "<| \"ID\" -> %lu, \"MODEL\" -> \"HEISENBERG\", \"q\" -> 3, \"D\" -> %" PRID ", \"L\" -> %" PRIL ", \"NV\" -> %" PRIv ", \"NE\" -> %" PRIv ", \"T\" -> %.15f, \"H\" -> {", timestamp, D, L, L * L, D * L * L, T);
for (q_t i = 0; i < 3; i++) {
fprintf(outfile_info, "%.15f", H[i]);