Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/Code-Quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
matrix:
julia-version:
- 'lts'
- '1'
os:
- 'ubuntu-latest'
arch:
Expand Down
17 changes: 10 additions & 7 deletions src/evolution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,24 @@ A structure storing the results and some information from solving time evolution
- `reltol::Real`: The relative tolerance which is used during the solving process.
"""
struct TimeEvolutionHEOMSol{
TT1<:Vector{<:Real},
TT2<:Vector{<:Real},
TT1<:AbstractVector{<:Real},
TT2<:AbstractVector{<:Real},
TS<:Vector{ADOs},
TE<:Union{Nothing,Matrix{ComplexF64}},
TE<:Union{Nothing,AbstractMatrix},
RETT<:Union{Nothing,Enum},
AlgT<:Union{Nothing,OrdinaryDiffEqAlgorithm},
TolT<:Union{Nothing,Real},
}
Btier::Int
Ftier::Int
times::TT1
times_ados::TT2
ados::TS
expect::TE
retcode::Union{Nothing,Enum}
alg::Union{Nothing,OrdinaryDiffEqAlgorithm}
abstol::Union{Nothing,Real}
reltol::Union{Nothing,Real}
retcode::RETT
alg::AlgT
abstol::TolT
reltol::TolT
end

function Base.show(io::IO, sol::TimeEvolutionHEOMSol)
Expand Down
2 changes: 1 addition & 1 deletion test/code-quality/code_quality.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@testset "Code quality" verbose = true begin
@testset "Aqua.jl" begin
Aqua.test_all(HierarchicalEOM; ambiguities = false)
Aqua.test_all(HierarchicalEOM; ambiguities = false, unbound_args = false)
end

@testset "JET.jl" begin
Expand Down
Loading