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 a25a254 commit fa93c44Copy full SHA for fa93c44
src/systems/parameter_buffer.jl
@@ -105,8 +105,7 @@ function MTKParameters(
105
end
106
107
isempty(missing_params) || throw(MissingParametersError(collect(missing_params)))
108
-
109
- p = Dict(unwrap(k) => fixpoint_sub(v, bigdefs) for (k, v) in p)
+ p = Dict(unwrap(k) => (bigdefs[unwrap(k)] = fixpoint_sub(v, bigdefs)) for (k, v) in p)
110
for (sym, _) in p
111
if iscall(sym) && operation(sym) === getindex &&
112
first(arguments(sym)) in all_ps
0 commit comments