We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f456665 + 4748e48 commit 688b559Copy full SHA for 688b559
docs/src/basics/Debugging.md
@@ -57,7 +57,7 @@ We can use `debug_system` to log the failing assertions in each call to the RHS
57
```@repl debug
58
dsys = debug_system(sys; functions = []);
59
dprob = ODEProblem(dsys, [], (0.0, 10.0));
60
-dsol = solve(dprob, Tsit5());
+dsol = solve(dprob, Tsit5(); dtmin = 0.1); # high dtmin only to show less clutter on this page
61
```
62
63
Note the logs containing the failed assertion and corresponding message. To temporarily disable
0 commit comments