We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6911017 commit 926681fCopy full SHA for 926681f
src/time_evolution/mesolve.jl
@@ -43,7 +43,7 @@ end
43
44
_mesolve_make_L_QobjEvo(H::QuantumObject, c_ops) = QobjEvo(liouvillian(H, c_ops); type = SuperOperator)
45
function _mesolve_make_L_QobjEvo(H::Tuple, c_ops)
46
- c_ops isa Nothing && return QobjEvo(H)
+ c_ops isa Nothing && return QobjEvo(H; type = SuperOperator, f = liouvillian)
47
return QobjEvo((H..., mapreduce(op -> lindblad_dissipator(op), +, c_ops)); type = SuperOperator, f = liouvillian)
48
end
49
_mesolve_make_L_QobjEvo(H::QuantumObjectEvolution{DT,OperatorQuantumObject}, c_ops) where {DT<:AbstractSciMLOperator} =
0 commit comments