From e768b9bfca6cd1b339b29fb60592b61cd261003c Mon Sep 17 00:00:00 2001 From: "Kurt A. O'Hearn" <ohearnku@msu.edu> Date: Wed, 29 Jul 2020 13:41:53 -0400 Subject: [PATCH] Tools: fix issue with merge for parse_results command (total line count error). --- tools/run_sim.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/run_sim.py b/tools/run_sim.py index 2e8f3020..c5fa2182 100644 --- a/tools/run_sim.py +++ b/tools/run_sim.py @@ -537,9 +537,9 @@ restart_freq 0 ! 0: do not output any restart f except Exception: pass - # subtract for header, footer (total time), and extra step + # subtract for header and extra step # (e.g., 100 steps means steps 0 through 100, inclusive) - if (line_cnt - 3) == (int(param['nsteps']) / freq_step): + if (line_cnt - 2) == (int(param['nsteps']) / freq_step): fout.write(self.__result_body_fmt.format(path.basename(self.__geo_file).split('.')[0], str(reduce(mul, map(int, param['proc_by_dim'].split(':')), 1)), param['nsteps'], param['cm_solver_pre_comp_type'], @@ -630,9 +630,9 @@ restart_freq 0 ! 0: do not output any restart f except Exception: pass - # subtract for header, footer (total time), and extra step + # subtract for header and extra step # (e.g., 100 steps means steps 0 through 100, inclusive) - if (line_cnt - 3) == (int(param['nsteps']) / freq_step): + if (line_cnt - 2) == (int(param['nsteps']) / freq_step): fout.write(self.__result_body_fmt.format(path.basename(self.__geo_file).split('.')[0], str(reduce(mul, map(int, param['proc_by_dim'].split(':')), 1)), param['nsteps'], param['cm_solver_pre_comp_type'], -- GitLab