From 19fcaf68f401ab4bae47cd8c4c84eb2560ce3b8b Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Wed, 4 Sep 2019 15:40:58 -0400 Subject: actually return the number of steps --- src/new_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/new_model.cpp b/src/new_model.cpp index a1dce92..9d51ff5 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -496,7 +496,7 @@ int main (int argc, char *argv[]) { if (!already_exists) { outfile << "N L T J K1 K2 \\[Alpha] M \\[Delta]M \\[Rho] \\[Delta]\\[Rho]\n"; } - outfile << N << " " << L << " " << T << " " << J << " " << K1 << " " << K2 << " " << α << " " << mi.A2.avg() / pow(si.nv, 2) << " " << mi.A2.serr() / pow(si.nv, 2) << " " << stiffness.avg() / sxy.ne << " " << stiffness.serr() / sxy.ne << "\n"; + outfile << nn << " " << L << " " << T << " " << J << " " << K1 << " " << K2 << " " << α << " " << mi.A2.avg() / pow(si.nv, 2) << " " << mi.A2.serr() / pow(si.nv, 2) << " " << stiffness.avg() / sxy.ne << " " << stiffness.serr() / sxy.ne << "\n"; outfile.close(); } -- cgit v1.2.3-54-g00ecf