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 ntol < niters:
pd_tolf = pd_tol[-1]
pd_tol += [pd_tolf]*niters # no harm in too many
When niters is equal to 1, for all ntol we have ntol >=niters. It results in pd_tolf not being defined raising an error later in the worker. A simple fix would be either changing the condition to ntol <=niters or setting pd_tolf before the condition.
pd_tolf = pd_tol[-1]
if ntol < niters:
pd_tol += [pd_tolf]*niters # no harm in too many
The text was updated successfully, but these errors were encountered:
When niters is equal to 1, for all ntol we have ntol >=niters. It results in pd_tolf not being defined raising an error later in the worker. A simple fix would be either changing the condition to ntol <=niters or setting pd_tolf before the condition.
The text was updated successfully, but these errors were encountered: