From 4748e48fc3708f2155db01bf1f020fe8d963a95e Mon Sep 17 00:00:00 2001 From: Herman Sletmoen Date: Wed, 1 Oct 2025 12:07:46 +0200 Subject: [PATCH] Use high dtmin on debug page to show fewer assertion errors --- docs/src/basics/Debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/basics/Debugging.md b/docs/src/basics/Debugging.md index cbd6bc5e77..e90aa7ae6f 100644 --- a/docs/src/basics/Debugging.md +++ b/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 ```@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