Skip to content

Commit fa8ec8a

Browse files
committed
Fixes to integrator
1 parent a377b43 commit fa8ec8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ensemblegpukernel/nlsolve/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Δz = linear_solve(W_eval, f_rhs)
1818
z_i = z_i - Δz
1919

20-
if norm(dt * integrator.f(tmp + γ * z_i, p, t + c * dt) - z_i) < abstol
20+
if integrator.internalnorm(dt * integrator.f(tmp + γ * z_i, p, t + c * dt) - z_i, t) < abstol
2121
break
2222
end
2323
end

0 commit comments

Comments
 (0)