Skip to content

Commit 35ccb4b

Browse files
committed
fix timedependent integrator
1 parent d6415f3 commit 35ccb4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algorithms/timestep/integrators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function integrate(
2222
imaginary_evolution::Bool = false
2323
)
2424
dt′ = imaginary_evolution ? -dt : -1im * dt
25-
y, convhist = exponentiate(_eval_t(f, t + dt / 2), dt′, y₀, alg)
25+
y, convhist = exponentiate(_eval_t(f, t + dt / 2), dt′, y₀, alg)
2626
convhist.converged == 0 &&
2727
@warn "integrator failed to converge: normres = $(convhist.normres)"
2828
return y

0 commit comments

Comments
 (0)