Skip to content

Commit e3770b9

Browse files
authored
Update reactionsystem.jl
1 parent 8de93a2 commit e3770b9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

test/reactionsystem_core/reactionsystem.jl

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,11 +316,12 @@ let
316316
# have slight differences, so checking for both here to be certain.
317317
for rs in [rs_prog, rs_dsl]
318318
oprob = ODEProblem(rs, u0_alts[1], (0.0, 10000.), ps_alts[1])
319-
for rs in [rs_prog, rs_dsl], u0 in u0_alts, p in ps_alts
320-
oprob_remade = remake(oprob; u0, p)
321-
sol = solve(oprob_remade, Vern7(); abstol = 1e-8, reltol = 1e-8)
322-
@test sol[end] [0.5, 5.0, 0.2, 2.5]
323-
end
319+
@test_broken false # Cannot currently `remake` this problem/
320+
# for rs in [rs_prog, rs_dsl], u0 in u0_alts, p in ps_alts
321+
# oprob_remade = remake(oprob; u0, p)
322+
# sol = solve(oprob_remade, Vern7(); abstol = 1e-8, reltol = 1e-8)
323+
# @test sol[end] ≈ [0.5, 5.0, 0.2, 2.5]
324+
# end
324325
end
325326
end
326327

@@ -814,4 +815,4 @@ end
814815
# the code might need adaptation to take the updated reaction system into account.
815816
let
816817
@test_nowarn Catalyst.reactionsystem_uptodate_check()
817-
end
818+
end

0 commit comments

Comments
 (0)