Skip to content

Commit

Permalink
Previous commit incorrectly implemented; fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlhicks committed Apr 29, 2023
1 parent e336423 commit a3fb5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qtensor3d
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a3fb5e5

Please sign in to comment.