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 5dd1471 commit 49e2321Copy full SHA for 49e2321
test/input_output_handling.jl
@@ -8,6 +8,8 @@ using ModelingToolkit: t_nounits as t, D_nounits as D
8
eqs = [D(xx) ~ some_input]
9
@named model = System(eqs, t)
10
@test_throws ExtraVariablesSystemException mtkcompile(model)
11
+err = "In particular, the unset input(s) are:\n some_input(t)"
12
+@test_throws err mtkcompile(model)
13
14
# Test input handling
15
@variables x(t) u(t) [input = true] v(t)[1:2] [input = true]
0 commit comments