summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Kobert <dennis@kobert.dev>2019-11-30 10:25:58 +0100
committerDennis Kobert <dennis@kobert.dev>2019-11-30 10:25:58 +0100
commit8e376a7447310e5e36f69f8e6e3984599ceaef74 (patch)
tree3b81bb6a91e2576460dbf6596e6ff51824c29a97
parentf0662ea546cbbfde2a4bf369bd1d856ef39f5319 (diff)
Remove unnecessary prit statement
-rw-r--r--single_dequantify.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/single_dequantify.py b/single_dequantify.py
index 2a5e2bc..b2cb400 100644
--- a/single_dequantify.py
+++ b/single_dequantify.py
@@ -34,7 +34,6 @@ def sphere2cart(phi, theta):
for i in range(iterations):
state = time_evolution(state)
h = npy.dot(state, state)
- #print(f"{bloch_map(state)[0]}; {bloch_map(state)[1]}")
coords = bloch_map(state)
coords = sphere2cart(coords[0], coords[1])
print(f"{coords[0]}; {coords[1]}; {coords[2]}")