Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Nov 8, 2024
1 parent c95da7d commit ffa4844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/parpe/hdf5_pe_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def _generate_simulation_to_optimization_parameter_mapping(self) -> None:
for model_parameter_idx, model_parameter_id \
in enumerate(variable_par_ids):
mapped_parameter = cond_par_map.map_sim_var[model_parameter_id]
while mapped_parameter in cond_par_map.map_sim_var:
while cond_par_map.map_sim_var.get(mapped_parameter, mapped_parameter) != mapped_parameter:
mapped_parameter = cond_par_map.map_sim_var[mapped_parameter]
try:
(mapped_idx, override) = self.get_index_mapping_for_par(
Expand Down

0 comments on commit ffa4844

Please sign in to comment.