You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1070 disabled StructuralIdentifiability tests and added a warning in the docs about it having issues. Once they are resolved we should reenable the tests.
The text was updated successfully, but these errors were encountered:
To record what has been investigated here, @TorkelE pointed out on Slack this seems to completely hang Julia:
functiontestSI()
t = ModelingToolkit.t_nounits
D = ModelingToolkit.D_nounits
@variablesX(t)
@parameters p d
eqs = [
D(X) ~ p - d*X
]
@mtkbuild osys =ODESystem(eqs, t)
measured_quantities = [X]
funcs_to_check = [osys.p]
SI.assess_identifiability(osys; measured_quantities, funcs_to_check)
end
Changing to funcs_to_check = [p] seemed to fix the issue. Note I had reported on Slack that removing logging fixed the issue for me, but that doesn't seem to be true currently (so perhaps it was from a polluted environment in some way).
isaacsas
changed the title
BifurcationKit and HomotopyContinuation tests broken
Reenable StructuralIdentifiability tests and tutorial once fixed
Oct 3, 2024
#1070 disabled StructuralIdentifiability tests and added a warning in the docs about it having issues. Once they are resolved we should reenable the tests.
The text was updated successfully, but these errors were encountered: