Skip to content

Commit

Permalink
fix display error
Browse files Browse the repository at this point in the history
  • Loading branch information
PBrdng committed Nov 21, 2023
1 parent f62def3 commit 0803429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/numerical_irreducible_decomposition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ function Base.show(io::IO, N::NumericalIrreducibleDecomposition)
println(io, header)

mdim = max_dim(N)
if mdim > 0
if mdim >= 0

Check warning on line 1183 in src/numerical_irreducible_decomposition.jl

View check run for this annotation

Codecov / codecov/patch

src/numerical_irreducible_decomposition.jl#L1183

Added line #L1183 was not covered by tests
for d = max_dim(N):-1:0
if haskey(D, d)
= length(D[d])
Expand Down

0 comments on commit 0803429

Please sign in to comment.