Skip to content

Commit

Permalink
fix N being 1 unit above the expected
Browse files Browse the repository at this point in the history
  • Loading branch information
danlessa committed Dec 15, 2023
1 parent 2fb96c9 commit c6b2b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cadCAD/configuration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def append_model(
sim_config['subset_id'] = subset_id
sim_config['subset_window'] = self.subset_window
N: int = sim_config['N']
for n in range(1, N + 1):
for n in range(0, N):
sim_config['simulation_id'] = self.simulation_id
sim_config['run_id'] = n
sim_config['N'] = 1
Expand Down

0 comments on commit c6b2b32

Please sign in to comment.