Skip to content

Commit

Permalink
Make ropt use "_" instead of "." delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
yngve-sk committed Nov 13, 2024
1 parent 5ac831e commit d673a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/everest/optimizer/everest2ropt.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def _parse_controls(controls: Sequence[ControlConfig], ropt_config):
ropt_config["variables"]["indices"] = (
None if all(enabled) else [idx for idx, item in enumerate(enabled) if item]
)
ropt_config["variables"]["delimiters"] = ".-"
ropt_config["variables"]["delimiters"] = "_-"
ropt_config["gradient"] = dict(gradients)

# The samplers in the list constructed above contain the names of the
Expand Down

0 comments on commit d673a07

Please sign in to comment.