Skip to content

Commit 3cbf1ee

Browse files
amilstedAshley MilstedKrastanov
authored
Remove debug println (#17)
--------- Co-authored-by: Ashley Milsted <[email protected]> Co-authored-by: Stefan Krastanov <[email protected]>
1 parent cd247d8 commit 3cbf1ee

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# News
22

3+
## v0.3.2
4+
5+
- Cleanup - removing forgotten debug print statements.
6+
37
## v0.3.1
48

59
- `identitysuperoperator` declared.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "QuantumInterface"
22
uuid = "5717a53b-5d69-4fa3-b976-0bf2f97ca1e5"
33
authors = ["QuantumInterface.jl contributors"]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/sparse.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ function ptrace(x::AbstractSparseMatrix, shape_nd, indices) # A fairly QuantumOp
1818
I_nd_after_max = CartesianIndex(shape_nd_after...)
1919
y = spzeros(eltype(x), shape_2d_after...)
2020
for I in eachindex(x)::CartesianIndices # Manual type assertions to help JET
21-
println(I.I)
2221
I_nd = sub2sub(shape_2d, shape_nd, I)::CartesianIndex
2322
if I_nd.I[indices] != I_nd.I[indices .+ N]
2423
continue

0 commit comments

Comments
 (0)