We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbf1e1 commit c161b11Copy full SHA for c161b11
test/parameter_dependencies.jl
@@ -194,6 +194,10 @@ end
194
sys3_tunables = ModelingToolkit.tunable_parameters(sys3, ModelingToolkit.parameters(sys3))
195
@test length(sys3_tunables) == 0
196
197
+ sys_incomplete = pendulum_sys
198
+ @test_throws ArgumentError ModelingToolkit.subset_tunables(sys_incomplete, new_tunables)
199
+ sys_nonsplit = mtkcompile(pendulum_sys; split = false)
200
+ @test_throws ArgumentError ModelingToolkit.subset_tunables(sys_nonsplit, new_tunables)
201
end
202
203
struct CallableFoo
0 commit comments