Skip to content

Commit

Permalink
fix show sparse bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsignorelli committed Jul 25, 2024
1 parent 39c4103 commit 070144c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function format(t::TPS; coloffset=0, max_nn=-1)
if cmplx
numcolumns += 1
end
out = Matrix{Any}(nothing, 0, (coloffset+1+1+1+1+1))
out = Matrix{Any}(nothing, 0, numcolumns)
idx = -1
idx = cycle!(t, idx, nn, mono, v)
while idx >= 0
Expand Down

0 comments on commit 070144c

Please sign in to comment.