Skip to content

Commit

Permalink
Merge pull request #183 from MaricelaM/master
Browse files Browse the repository at this point in the history
fix for #182
  • Loading branch information
rtqichen authored Sep 22, 2021
2 parents 9665c52 + 4e070fb commit 5a819e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchdiffeq/_impl/fixed_adams.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def _step_func(self, func, t0, dt, t1, y0):
if converged:
break
if not converged:
warnings.warn('Functional iteration did not converge. Solution may be incorrect.', file=sys.stderr)
warnings.warn('Functional iteration did not converge. Solution may be incorrect.')
self.prev_f.pop()
self._update_history(t0, f)
return dy, f0
Expand Down

0 comments on commit 5a819e4

Please sign in to comment.