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 8bfb157 commit 46f0930Copy full SHA for 46f0930
test/downstream/inversemodel.jl
@@ -135,7 +135,8 @@ cm = complete(model)
135
op = Dict(D(cm.inverse_tank.xT) => 1,
136
cm.tank.xc => 0.65)
137
tspan = (0.0, 1000.0)
138
-prob = ODEProblem(ssys, op, tspan)
+# https://github.com/SciML/ModelingToolkit.jl/issues/2786
139
+prob = ODEProblem(ssys, op, tspan; build_initializeprob = false)
140
sol = solve(prob, Rodas5P())
141
142
@test SciMLBase.successful_retcode(sol)
0 commit comments