Skip to content

Commit

Permalink
prevent world age
Browse files Browse the repository at this point in the history
  • Loading branch information
Fe-r-oz committed Nov 24, 2024
1 parent d6140ea commit 3b0d9a3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/nonclifford.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ function Base.show(io::IO, s::GeneralizedStabilizer)
println(io, "A mixture ∑ ϕᵢⱼ Pᵢ ρ Pⱼ† where ρ is")
show(io,s.stab)
println(io)
print(io, "with ϕᵢⱼ | Pᵢ | Pⱼ:")
for (di, dj) in sort(collect(keys(s.destabweights)))
χ = s.destabweights[(di, dj)]
for ((di, dj), χ) in sort(collect(s.destabweights), by = x -> (x[1], x[2]))
println(io)
print(io, " ")
print(IOContext(io, :compact => true), χ)
Expand Down

0 comments on commit 3b0d9a3

Please sign in to comment.