Skip to content

Commit dff97be

Browse files
test: account for additional initialization parameters
1 parent 97c7369 commit dff97be

4 files changed

+14
-5
lines changed

test/discrete_system.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ prob_map2 = DiscreteProblem(sys)
8383
sol_map2 = solve(prob_map2, FunctionMap());
8484

8585
@test sol_map.u sol_map2.u
86-
@test sol_map.prob.p == sol_map2.prob.p
86+
for p in parameters(sys)
87+
@test sol_map.prob.ps[p] sol_map2.prob.ps[p]
88+
end
8789
@test_throws Any sol_map2[R2]
8890
@test sol_map2[R2(k + 1)][begin:(end - 1)] == sol_map2[R][(begin + 1):end]
8991
# Direct Implementation

test/mtkparameters.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ eq = D(X) ~ p[1] - p[2] * X
109109
u0 = [X => 1.0]
110110
ps = [p => [2.0, 0.1]]
111111
p = MTKParameters(osys, ps, u0)
112-
@test p.tunable == [2.0, 0.1]
112+
@test p.tunable == [2.0, 0.1, 1.0]
113113

114114
# Ensure partial update promotes the buffer
115115
@parameters p q r

test/odesystem.jl

+8-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,10 @@ u01 = [y₁ => 1, y₂ => 1, y₃ => 1]
268268
prob_pmap = remake(prob14; p = p3, u0 = u01)
269269
prob_dpmap = remake(prob14; p = Dict(p3), u0 = Dict(u01))
270270
for p in [prob_pmap, prob_dpmap]
271-
@test p.p == MTKParameters(sys, [k₁ => 0.05, k₂ => 2e7, k₃ => 1.1e4])
271+
@test p.p isa MTKParameters
272+
p.ps[k₁] 0.05
273+
p.ps[k₂] 2e7
274+
p.ps[k₃] 1.1e-4
272275
@test Set(Num.(unknowns(sys)) .=> p.u0) == Set([y₁ => 1, y₂ => 1, y₃ => 1])
273276
end
274277
sol_pmap = solve(prob_pmap, Rodas5())
@@ -296,7 +299,10 @@ sol_dpmap = solve(prob_dpmap, Rodas5())
296299
prob = ODEProblem(sys, Pair[])
297300
prob_new = SciMLBase.remake(prob, p = Dict(sys1.a => 3.0, b => 4.0),
298301
u0 = Dict(sys1.x => 1.0))
299-
@test prob_new.p == MTKParameters(sys, [b => 4.0, sys1.a => 3.0, sys.sys2.a => 1.0])
302+
@test prob_new.p isa MTKParameters
303+
@test prob_new.ps[b] 4.0
304+
@test prob_new.ps[sys1.a] 3.0
305+
@test prob_new.ps[sys.sys2.a] 1.0
300306
@test prob_new.u0 == [1.0, 0.0]
301307
end
302308

test/symbolic_indexing_interface.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ using SciMLStructures: Tunable
2323
@test parameter_index.(
2424
(odesys,), [x, y, t, ParameterIndex(Tunable(), 1), :x, :y]) ==
2525
[nothing, nothing, nothing, ParameterIndex(Tunable(), 1), nothing, nothing]
26-
@test isequal(parameter_symbols(odesys), [a, b])
26+
@test isequal(
27+
Set(parameter_symbols(odesys)), Set([a, b, Initial(x), Initial(y), Initial(xy)]))
2728
@test all(is_independent_variable.((odesys,), [t, :t]))
2829
@test all(.!is_independent_variable.((odesys,), [x, y, a, :x, :y, :a]))
2930
@test isequal(independent_variable_symbols(odesys), [t])

0 commit comments

Comments
 (0)