Skip to content

Commit

Permalink
format files
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkclord authored Jun 5, 2024
1 parent 8506100 commit e29cf06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/steadystate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ function steadystate(
u0 = mat2vec(ket2dm(ψ0).data)
L = MatrixOperator(liouvillian(H, c_ops).data)

prob = ODEProblem{true}(L, u0, (0., tspan))
prob = ODEProblem{true}(L, u0, (0.0, tspan))
sol = solve(
prob,
solver.alg;
callback = TerminateSteadyState(abstol, reltol, _steadystate_ode_condition),
reltol = reltol,
abstol = abstol,
kwargs...
kwargs...,
)

ρss = reshape(sol.u[end], N, N)
Expand Down

0 comments on commit e29cf06

Please sign in to comment.