Skip to content

Commit 1dbe4d0

Browse files
committed
Merge branch 'master' into new_default_prob_update_tests
2 parents 87866b8 + cc2a777 commit 1dbe4d0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
3939
BenchmarkTools = "1.5"
4040
BifurcationKit = "0.3.4"
4141
CairoMakie = "0.12"
42-
Catalyst = "13"
42+
Catalyst = "14"
4343
DataFrames = "1.6"
4444
DiffEqParamEstim = "2.2"
4545
Distributions = "0.25"

test/upstream/mtk_structure_indexing.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ end
6464

6565
# Tests problem indexing and updating.
6666
let
67-
for prob in [deepcopy(problems); deepcopy(eproblems)]
67+
@test_broken false # Currently does not work for nonlinearproblems and their ensemble problems (https://github.com/SciML/SciMLBase.jl/issues/720).
68+
for prob in [deepcopy([oprob, sprob, dprob, jprob, ssprob]); deepcopy([eoprob, esprob, edprob, ejprob, essprob])]
6869
# Get u values (including observables).
6970
@test prob[X] == prob[model.X] == prob[:X] == 4
7071
@test prob[XY] == prob[model.XY] == prob[:XY] == 9
@@ -253,7 +254,8 @@ let
253254

254255
# Handles nonlinear and steady state solutions differently.
255256
let
256-
for sol in deepcopy([nsol, sssol])
257+
@test_broken false # Currently a problem for nonlinear solutions and steady state solutions (https://github.com/SciML/SciMLBase.jl/issues/720).
258+
for sol in deepcopy([])
257259
# Get u values.
258260
@test sol[X] == sol[model.X] == sol[:X]
259261
@test sol[XY] == sol[model.XY][1] == sol[:XY]

0 commit comments

Comments
 (0)