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
# The second check (Vector{Vector} is needed because on the CI server somehow the Tuple{..., ...} is converted into a Vector[..., ...]).
32
-
# It does not happen when I run tests locally, so no ideal how to fix.
33
-
(dprob.p isa Vector{Vector{Vector{Float64}}}) || dprob.p isa Vector{Vector} ||error("Parameters in input DiscreteProblem is of an unexpected type: $(typeof(dprob.p)). Was a LatticeReactionProblem passed into the DiscreteProblem when it was created?")
34
-
33
+
if!isnothing(dprob.f.sys)
34
+
error("Unexpected `DiscreteProblem` passed into `JumpProblem`. Was a `LatticeReactionSystem` used as input to the initial `DiscreteProblem`?")
35
+
end
36
+
35
37
# Computes hopping constants and mass action jumps (requires some internal juggling).
0 commit comments