From 45e82520c19d249a58efd00e327e3556dadbbd97 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 7 Jun 2026 02:15:05 -0400 Subject: [PATCH] style: apply Runic v1.7.0 formatting Pure formatting changes applied by running Runic v1.7.0 (the version used by the centralized SciML runic.yml@v1 CI workflow) in-place over the repo. This makes the Runic Format Check pass. No logic changes. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- lib/ODEProblemLibrary/src/brusselator_prob.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ODEProblemLibrary/src/brusselator_prob.jl b/lib/ODEProblemLibrary/src/brusselator_prob.jl index e39c9a7..703092c 100644 --- a/lib/ODEProblemLibrary/src/brusselator_prob.jl +++ b/lib/ODEProblemLibrary/src/brusselator_prob.jl @@ -117,7 +117,7 @@ function brusselator_1d_loop(du, u, p, t) A, B, alpha, dx = p alpha = alpha / dx^2 N = N_brusselator_1d - @inbounds for i in 1:N + return @inbounds for i in 1:N ip1 = limit(i + 1, N) im1 = limit(i - 1, N) du[i, 1] = alpha * (u[im1, 1] + u[ip1, 1] - 2u[i, 1]) +