From a974a622a0406e91977811ec8846d770cef99860 Mon Sep 17 00:00:00 2001 From: Christoph Hotter <52912924+ChristophHotter@users.noreply.github.com> Date: Mon, 1 Apr 2024 21:58:11 +0200 Subject: [PATCH] Update superradiant_laser_indexed.md --- docs/src/examples/superradiant_laser_indexed.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/examples/superradiant_laser_indexed.md b/docs/src/examples/superradiant_laser_indexed.md index 79e06599..e7d2752e 100644 --- a/docs/src/examples/superradiant_laser_indexed.md +++ b/docs/src/examples/superradiant_laser_indexed.md @@ -217,8 +217,8 @@ To ensure we are in the steady state we use a steady solver to calculate it. To ```@example superradiant_laser_indexed prob_ss = SteadyStateProblem(prob) -sol_ss = solve(prob_ss, DynamicSS(Tsit5(); abstol=1e-8, reltol=1e-8), - reltol=1e-14, abstol=1e-14, maxiters=5e7) +sol_ss = solve(prob_ss, DynamicSS(Tsit5(); abstol=1e-6, reltol=1e-6), + reltol=1e-12, abstol=1e-12, maxiters=1e7) nothing # hide ```