File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 3838 matrix :
3939 julia-version :
4040 - ' lts'
41+ - ' 1'
4142 os :
4243 - ' ubuntu-latest'
4344 arch :
Original file line number Diff line number Diff line change @@ -18,21 +18,24 @@ A structure storing the results and some information from solving time evolution
1818- `reltol::Real`: The relative tolerance which is used during the solving process.
1919"""
2020struct TimeEvolutionHEOMSol{
21- TT1<: Vector {<:Real} ,
22- TT2<: Vector {<:Real} ,
21+ TT1<: AbstractVector {<:Real} ,
22+ TT2<: AbstractVector {<:Real} ,
2323 TS<: Vector{ADOs} ,
24- TE<: Union{Nothing,Matrix{ComplexF64}} ,
24+ TE<: Union{Nothing,AbstractMatrix} ,
25+ RETT<: Union{Nothing,Enum} ,
26+ AlgT<: Union{Nothing,OrdinaryDiffEqAlgorithm} ,
27+ TolT<: Union{Nothing,Real} ,
2528}
2629 Btier:: Int
2730 Ftier:: Int
2831 times:: TT1
2932 times_ados:: TT2
3033 ados:: TS
3134 expect:: TE
32- retcode:: Union{Nothing,Enum}
33- alg:: Union{Nothing,OrdinaryDiffEqAlgorithm}
34- abstol:: Union{Nothing,Real}
35- reltol:: Union{Nothing,Real}
35+ retcode:: RETT
36+ alg:: AlgT
37+ abstol:: TolT
38+ reltol:: TolT
3639end
3740
3841function Base. show (io:: IO , sol:: TimeEvolutionHEOMSol )
Original file line number Diff line number Diff line change 11@testset " Code quality" verbose = true begin
22 @testset " Aqua.jl" begin
3- Aqua. test_all (HierarchicalEOM; ambiguities = false )
3+ Aqua. test_all (HierarchicalEOM; ambiguities = false , unbound_args = false )
44 end
55
66 @testset " JET.jl" begin
You can’t perform that action at this time.
0 commit comments