diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-12 10:55:36 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-12 10:55:36 -0400 |
commit | c5497d08326bf743f6394e86f1b4d19b088fca38 (patch) | |
tree | acdee5538cee31917bb39c6b0d007f41ff2d6bbb /src | |
parent | 8a06cf91fbb02684059bb69f229acaa7f9c501b3 (diff) | |
download | c++-c5497d08326bf743f6394e86f1b4d19b088fca38.tar.gz c++-c5497d08326bf743f6394e86f1b4d19b088fca38.tar.bz2 c++-c5497d08326bf743f6394e86f1b4d19b088fca38.zip |
fixed inidous bug in wolff_heisenberg's metadata-
Diffstat (limited to 'src')
-rw-r--r-- | src/wolff_heisenberg.cpp | 2 |
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]); |