Skip to content

Commit

Permalink
Update brusselator_eq.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Jul 31, 2024
1 parent 1eceb2a commit 792ec87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pde_systems/brusselator_eq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ using ModelingToolkit, MethodOfLines, LinearAlgebra, OrdinaryDiffEq
@testset "." begin
for k in div(length(t), 2):length(t)
msolu = msol.u[k][:, :, 1]
@test solu[2:end, 2:end, k]msol[k][:, :, 1] rtol=0.1
@test solu[2:end, 2:end, k]msol.u[k][:, :, 1] rtol=0.1
msolv = msol.u[k][:, :, 2]
@test solv[2:end, 2:end, k]msol[k][:, :, 2] rtol=0.1
@test solv[2:end, 2:end, k]msol.u[k][:, :, 2] rtol=0.1
end
end

Expand Down

0 comments on commit 792ec87

Please sign in to comment.