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
We had a code which, starting with Julia 1.10.5, was hanging on the compilation stage (see this issue), here is the code
using ModelingToolkit
using StructuralIdentifiability
const SI = StructuralIdentifiability
function testSI()
t = ModelingToolkit.t_nounits
D = ModelingToolkit.D_nounits
@variables X(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
testSI()
The problem exists in both 1.10.7 and 1.11.2 but it does not appear in the nightly build and in the pre-release version of 1.11.3 (thanks!).
However, the solution does not seem to be backported to 1.10, it still hangs in the pre-release version of 1.10.8. Would it be possible to back port it there?
The text was updated successfully, but these errors were encountered:
We had a code which, starting with Julia 1.10.5, was hanging on the compilation stage (see this issue), here is the code
The problem exists in both 1.10.7 and 1.11.2 but it does not appear in the nightly build and in the pre-release version of 1.11.3 (thanks!).
However, the solution does not seem to be backported to 1.10, it still hangs in the pre-release version of 1.10.8. Would it be possible to back port it there?
The text was updated successfully, but these errors were encountered: