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 f3f94c9 commit 97c7369Copy full SHA for 97c7369
test/initializationsystem.jl
@@ -1207,7 +1207,8 @@ end
1207
prob2 = remake(prob; u0 = [x => 2.0])
1208
@test prob2[x] == 2.0
1209
test_dummy_initialization_equation(prob2, x)
1210
- prob3 = remake(prob; u0 = [y => 2.0])
+ # otherwise we have `x ~ 2, y ~ 2` which is unsatisfiable
1211
+ prob3 = remake(prob; u0 = [x => nothing, y => 2.0])
1212
@test prob3.f.initialization_data !== nothing
1213
@test init(prob3)[x] ≈ 1.0
1214
prob4 = remake(prob; p = [p => 1.0])
0 commit comments