Skip to content

Commit 7d4b9eb

Browse files
Merge pull request #194 from ChrisRackauckas-Claude/run-runic-formatting
style: apply Runic v1.7.0 formatting
2 parents 10adf15 + 45e8252 commit 7d4b9eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ODEProblemLibrary/src/brusselator_prob.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function brusselator_1d_loop(du, u, p, t)
117117
A, B, alpha, dx = p
118118
alpha = alpha / dx^2
119119
N = N_brusselator_1d
120-
@inbounds for i in 1:N
120+
return @inbounds for i in 1:N
121121
ip1 = limit(i + 1, N)
122122
im1 = limit(i - 1, N)
123123
du[i, 1] = alpha * (u[im1, 1] + u[ip1, 1] - 2u[i, 1]) +

0 commit comments

Comments
 (0)