diff --git a/src/reactionsystem_conversions.jl b/src/reactionsystem_conversions.jl index c46854454f..f2c83507fc 100644 --- a/src/reactionsystem_conversions.jl +++ b/src/reactionsystem_conversions.jl @@ -109,7 +109,7 @@ function assemble_diffusion(rs, sts, ispcs; combinatoric_ratelaws = true, num_bcsts = count(isbc, get_unknowns(rs)) # we make a matrix sized by the number of reactions - eqs = Matrix{Num}(undef, length(sts) + num_bcsts, length(get_rxs(rs))) + eqs = Matrix{Any}(undef, length(sts) + num_bcsts, length(get_rxs(rs))) eqs .= 0 species_to_idx = Dict((x => i for (i, x) in enumerate(ispcs))) nps = get_networkproperties(rs)