Skip to content

Commit 34750c3

Browse files
Update lib/OrdinaryDiffEqRosenbrock/src/rosenbrock_perform_step.jl
1 parent 5b03313 commit 34750c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/OrdinaryDiffEqRosenbrock/src/rosenbrock_perform_step.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ end
308308

309309
if mass_matrix !== I
310310
invatol = inv(integrator.opts.abstol)
311-
atmp = ifelse(integrator.differential_vars, false, integrator.fsallast) .* invatol
311+
atmp = @. ifelse(integrator.differential_vars, false, integrator.fsallast) * invatol
312312
integrator.EEst += integrator.opts.internalnorm(atmp, t)
313313
end
314314
end

0 commit comments

Comments
 (0)