Skip to content

Commit

Permalink
Fix wrong child object name.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Aug 3, 2023
1 parent f555e25 commit ebe8d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biosimulators_tellurium/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def exec_sed_task(task, variables, preprocessed_task=None, log=None, config=None
if config.VALIDATE_RESULTS and numpy.any(numpy.isnan(results)):
msg = 'Simulation failed with algorithm `{}` ({})'.format(
preprocessed_task.algorithm_kisao_ids[task.id],
KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_id[task.id]]['id'])
KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_ids[task.id]]['id'])
for i_param in range(preprocessed_task.solvers[task.id].getNumParams()):
param_name = preprocessed_task.solvers[task.id].getParamName(i_param)
msg += '\n - {}: {}'.format(param_name, getattr(preprocessed_task.solvers[task.id], param_name))
Expand Down

0 comments on commit ebe8d0f

Please sign in to comment.