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 f043319 commit b54d087Copy full SHA for b54d087
src/systems/pde/pdesystem.jl
@@ -113,7 +113,7 @@ struct PDESystem <: ModelingToolkit.AbstractMultivariateSystem
113
if isnothing(analytic_func)
114
analytic_func = map(analytic) do eq
115
args = arguments(eq.lhs)
116
- p = ps isa SciMLBase.NullParameters ? [] : map(a -> a.first, ps)
+ p = ps isa SciMLBase.NullParameters ? [] : ps
117
args = vcat(DestructuredArgs(p), args)
118
ex = Func(args, [], eq.rhs) |> toexpr
119
eq.lhs => drop_expr(@RuntimeGeneratedFunction(eval_module, ex))
0 commit comments