@@ -53,7 +53,7 @@ function SymbolicIndexingInterface.observed(sys::SystemMockup, sym, states = not
5353end
5454SymbolicIndexingInterface. is_time_dependent (sys:: SystemMockup ) = isequal (sys. indepvar, :t )
5555SymbolicIndexingInterface. constant_structure (sys:: SystemMockup ) = sys. static
56- SymbolicIndexingInterface. all_solvable_symbols (sys:: SystemMockup ) = sys. vars
56+ SymbolicIndexingInterface. all_variable_symbols (sys:: SystemMockup ) = sys. vars
5757function SymbolicIndexingInterface. all_symbols (sys:: SystemMockup )
5858 vcat (sys. vars, sys. params, independent_variable_symbols (sys))
5959end
@@ -83,7 +83,7 @@ sys = SystemMockup(true, [:x, :y, :z], [:a, :b, :c], :t)
8383@test variable_symbols (sys) == [:x , :y , :z ]
8484@test parameter_symbols (sys) == [:a , :b , :c ]
8585@test independent_variable_symbols (sys) == [:t ]
86- @test all_solvable_symbols (sys) == [:x , :y , :z ]
86+ @test all_variable_symbols (sys) == [:x , :y , :z ]
8787@test sort (all_symbols (sys)) == [:a , :b , :c , :t , :x , :y , :z ]
8888
8989sys = SystemMockup (true , [:x , :y , :z ], [:a , :b , :c ], nothing )
@@ -99,7 +99,7 @@ sys = SystemMockup(true, [:x, :y, :z], [:a, :b, :c], nothing)
9999@test variable_symbols (sys) == [:x , :y , :z ]
100100@test parameter_symbols (sys) == [:a , :b , :c ]
101101@test independent_variable_symbols (sys) == []
102- @test all_solvable_symbols (sys) == [:x , :y , :z ]
102+ @test all_variable_symbols (sys) == [:x , :y , :z ]
103103@test sort (all_symbols (sys)) == [:a , :b , :c , :x , :y , :z ]
104104
105105sys = SystemMockup (false , [:x , :y , :z ], [:a , :b , :c ], :t )
123123@test variable_symbols (sys, 3 ) == [:x , :y , :z ]
124124@test parameter_symbols (sys) == [:a , :b , :c ]
125125@test independent_variable_symbols (sys) == [:t ]
126- @test all_solvable_symbols (sys) == [:x , :y , :z ]
126+ @test all_variable_symbols (sys) == [:x , :y , :z ]
127127@test sort (all_symbols (sys)) == [:a , :b , :c , :t , :x , :y , :z ]
0 commit comments