Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/basics/Debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ We can use `debug_system` to log the failing assertions in each call to the RHS
```@repl debug
dsys = debug_system(sys; functions = []);
dprob = ODEProblem(dsys, [], (0.0, 10.0));
dsol = solve(dprob, Tsit5());
dsol = solve(dprob, Tsit5(); dtmin = 0.1); # high dtmin only to show less clutter on this page
```

Note the logs containing the failed assertion and corresponding message. To temporarily disable
Expand Down
Loading