You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a simulation fails runAmiciSimulations(...., failfast=True) , an empty ReturnData with status=AMICI_SUCCESS is returned for the skipped conditions, . This is rather confusing. Either we should add a new status, e.g., NOT_RUN, or we just return None instead of ReturnData for these cases.
The text was updated successfully, but these errors were encountered:
So far, if a simulation with `runAmiciSimulations(...., failfast=True)` failed, an empty `ReturnData` with `status=AMICI_SUCCESS` was returned for the skipped conditions. This was rather confusing.
This adds a new status: `AMICI_NOT_RUN`.
Fixes#1949
If a simulation fails
runAmiciSimulations(...., failfast=True)
, an emptyReturnData
withstatus=AMICI_SUCCESS
is returned for the skipped conditions, . This is rather confusing. Either we should add a new status, e.g.,NOT_RUN
, or we just returnNone
instead ofReturnData
for these cases.The text was updated successfully, but these errors were encountered: