Skip to content

Commit 4748e48

Browse files
committed
Use high dtmin on debug page to show fewer assertion errors
1 parent f456665 commit 4748e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/basics/Debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ We can use `debug_system` to log the failing assertions in each call to the RHS
5757
```@repl debug
5858
dsys = debug_system(sys; functions = []);
5959
dprob = ODEProblem(dsys, [], (0.0, 10.0));
60-
dsol = solve(dprob, Tsit5());
60+
dsol = solve(dprob, Tsit5(); dtmin = 0.1); # high dtmin only to show less clutter on this page
6161
```
6262

6363
Note the logs containing the failed assertion and corresponding message. To temporarily disable

0 commit comments

Comments
 (0)