File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ using Catalyst, SBML
33using Test
44
55cd (@__DIR__ )
6- sbmlfile = joinpath (" test " , " data" , " reactionsystem_01.xml" )
6+ sbmlfile = joinpath (" data" , " reactionsystem_01.xml" )
77const IV = default_t ()
88@parameters k1, c1
99@species s1 (IV), s2 (IV), s1s2 (IV)
@@ -100,7 +100,7 @@ trueeqs = Equation[default_time_deriv()(s1) ~ -((k1 * s1 * s2) / c1),
100100@test isequal (Catalyst. get_eqs (odesys), trueeqs)
101101@test isequal (Catalyst. get_iv (odesys), IV)
102102@test isequal (Catalyst. get_unknowns (odesys), [s1, s1s2, s2])
103- @test issetequal (Catalyst . parameters_toplevel (odesys), [k1, c1])
103+ @test issetequal (ModelingToolkit . parameters_toplevel (odesys), [k1, c1])
104104u0 = [s1 => 2 * 1.0 , s2 => 2 * 1.0 , s1s2 => 2 * 1.0 ]
105105par = [k1 => 1.0 , c1 => 2.0 ]
106106testdef = merge (Dict (u0), Dict (par))
You can’t perform that action at this time.
0 commit comments