Skip to content

Commit 3b1f809

Browse files
[no ci] Fix typos
1 parent 88e520c commit 3b1f809

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/qobj/superoperators.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ function liouvillian(
164164
) where {OpType<:Union{OperatorQuantumObject,SuperOperatorQuantumObject}}
165165
L = liouvillian(H, Id_cache)
166166
if !(c_ops isa Nothing)
167-
L += _sum_linblad_dissipators(c_ops, Id_cache)
167+
L += _sum_lindblad_dissipators(c_ops, Id_cache)
168168
end
169169
return L
170170
end
171171

172172
liouvillian(H::Nothing, c_ops::Union{AbstractVector,Tuple}, Id_cache::Diagonal = I(prod(c_ops[1].dims))) =
173-
_sum_linblad_dissipators(c_ops, Id_cache)
173+
_sum_lindblad_dissipators(c_ops, Id_cache)
174174

175175
liouvillian(H::Nothing, c_ops::Nothing) = 0
176176

@@ -179,7 +179,7 @@ liouvillian(H::AbstractQuantumObject{OperatorQuantumObject}, Id_cache::Diagonal
179179

180180
liouvillian(H::AbstractQuantumObject{SuperOperatorQuantumObject}, Id_cache::Diagonal) = H
181181

182-
function _sum_linblad_dissipators(c_ops, Id_cache::Diagonal)
182+
function _sum_lindblad_dissipators(c_ops, Id_cache::Diagonal)
183183
D = 0
184184
# sum all the (time-independent) c_ops first
185185
c_ops_ti = filter(op -> isa(op, QuantumObject), c_ops)

src/time_evolution/time_evolution.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ function Base.show(io::IO, sol::TimeEvolutionSSESol)
203203
end
204204

205205
@doc raw"""
206-
struct TimeEvolutionSSESol
206+
struct TimeEvolutionSMESol
207207
208-
A structure storing the results and some information from solving trajectories of the Stochastic Shrodinger equation time evolution.
208+
A structure storing the results and some information from solving trajectories of the Stochastic Master Equation time evolution.
209209
210210
# Fields (Attributes)
211211

0 commit comments

Comments
 (0)