From a3fb5e5a003b4f10fd052f79d71de41c53144627 Mon Sep 17 00:00:00 2001 From: Andrew Hicks Date: Sat, 29 Apr 2023 17:38:49 -0500 Subject: [PATCH] Previous commit incorrectly implemented; fixed --- scripts/qtensor3d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qtensor3d b/scripts/qtensor3d index 8346f47..5818ffd 100644 --- a/scripts/qtensor3d +++ b/scripts/qtensor3d @@ -187,7 +187,7 @@ def auto_run(path, *, overwrite=False, supersessions): completed = resume_save(path, supersessions=supersessions) if completed: - supersessions['dt'] *= 10 if supersessions['dt'] >= 1_000_000_000 else 1 + supersessions['dt'] *= 10 if supersessions['dt'] <= 1_000_000_000 else 1 continue supersessions['dt'] *= 0.1