Skip to content

Commit

Permalink
remove redundant blank spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkclord authored Jun 5, 2024
1 parent e29cf06 commit 611171d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/steady_state.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
t_l = LinRange(0, 200, 1000)
sol_me = mesolve(H, psi0, t_l, c_ops, e_ops = e_ops, progress_bar = false)
rho_me = sol_me.states[end]

solver = SteadyStateODESolver()
ρ_ss = steadystate(H, psi0, t_l[end], c_ops, solver = solver)
@test tracedist(rho_me, ρ_ss) < 1e-4

solver = SteadyStateDirectSolver()
ρ_ss = steadystate(H, c_ops, solver = solver)
@test tracedist(rho_me, ρ_ss) < 1e-4
Expand Down

0 comments on commit 611171d

Please sign in to comment.