From e1ee6f39bb6dc7860a27a26d8cb4e0d0b2189ae0 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Mon, 18 Feb 2019 17:07:52 -0300 Subject: [PATCH] DRIVER: There is no need to limit tm_exec. Signed-off-by: Grzegorz Kowal --- sources/driver.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/driver.F90 b/sources/driver.F90 index c254e0d..eb22d5b 100644 --- a/sources/driver.F90 +++ b/sources/driver.F90 @@ -933,8 +933,8 @@ program amun ! convert the execution time to days, hours, minutes, and seconds and print it ! - es = int(max(0.0d+00, tm_exec)) - ec = int(1000 * (max(0.0d+00, tm_exec) - es)) + es = int(tm_exec) + ec = int(1000 * (tm_exec - es)) ed = es / 86400 es = es - 86400 * ed eh = es / 3600