Skip to content

Commit 2c95bad

Browse files
committed
minor changes
1 parent b44b2b7 commit 2c95bad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/steadystate.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ For more details about the solving `alg`orithms, please refer to [`OrdinaryDiffE
8080
Base.@kwdef struct SteadyStateODESolver{
8181
MT<:OrdinaryDiffEqAlgorithm,
8282
ST<:Union{Nothing,QuantumObject},
83-
T1<:Real,
84-
T2<:Real,
85-
T3<:Real,
83+
TT<:Real,
84+
RT<:Real,
85+
AT<:Real,
8686
} <: SteadyStateSolver
8787
alg::MT = Tsit5()
8888
ψ0::ST = nothing
89-
tmax::T1 = Inf
90-
terminate_reltol::T2 = 10 * DEFAULT_ODE_SOLVER_OPTIONS.reltol
91-
terminate_abstol::T3 = 10 * DEFAULT_ODE_SOLVER_OPTIONS.abstol
89+
tmax::TT = Inf
90+
terminate_reltol::RT = 10 * DEFAULT_ODE_SOLVER_OPTIONS.reltol
91+
terminate_abstol::AT = 10 * DEFAULT_ODE_SOLVER_OPTIONS.abstol
9292
end
9393

9494
@doc raw"""

0 commit comments

Comments
 (0)