Skip to content

Commit e313956

Browse files
committed
Fix while loop conditional.
1 parent c41a125 commit e313956

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/somd2/runner/_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ def generate_lam_vals(lambda_base, increment=0.001):
690690
next_frame = self._config.frame_frequency
691691

692692
# Loop until we reach the runtime.
693-
while runtime <= checkpoint_frequency:
693+
while runtime < checkpoint_frequency:
694694
# Run the dynamics in blocks of the GCMC frequency.
695695
dynamics.run(
696696
self._config.gcmc_frequency,

0 commit comments

Comments
 (0)