Skip to content

Commit

Permalink
small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben Horn committed Aug 14, 2024
1 parent 9a6d364 commit 1ff1c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/config-generator/src/generators/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def apply(partial_xml, get_config_value) -> None:
domain_size = get_domain_size(get_config_value)
if simulation_type == "test":
partial_xml.substitute("coupling-cycles", 50)
elif simulation_type == "small":
elif simulation_type == "short":
partial_xml.substitute("coupling-cycles", 250 * domain_size**2)
elif simulation_type == "normal":
partial_xml.substitute("coupling-cycles", 500 * domain_size**2)
Expand Down

0 comments on commit 1ff1c8d

Please sign in to comment.