Skip to content

Commit 7069b70

Browse files
committed
remove prints
1 parent 90ea736 commit 7069b70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/python/qubed/set_operations.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ def operation(
126126
if key not in B.metadata:
127127
raise ValueError(f"A has key {key} but B does not. {A = } {B = }")
128128

129-
print(f"{key = } {A.metadata[key] = } {B.metadata[key]}")
129+
# print(f"{key = } {A.metadata[key] = } {B.metadata[key]}")
130130
A_val = A.metadata[key]
131131
B_val = B.metadata[key]
132132
if A_val == B_val:
133-
print(f"{' ' * depth}Keeping metadata key '{key}' at this level")
133+
# print(f"{' ' * depth}Keeping metadata key '{key}' at this level")
134134
stayput_metadata[key] = A.metadata[key]
135135
else:
136-
print(f"{' ' * depth}Pushing down metadata key '{key}' {A_val} {B_val}")
136+
# print(f"{' ' * depth}Pushing down metadata key '{key}' {A_val} {B_val}")
137137
pushdown_metadata_A[key] = A_val
138138
pushdown_metadata_B[key] = B_val
139139

@@ -143,7 +143,7 @@ def operation(
143143
# where d is the length of the node values
144144
for node in A.children:
145145
N = len(node.values)
146-
print(N)
146+
# print(N)
147147
meta = {
148148
k: np.broadcast_to(v[..., np.newaxis], v.shape + (N,))
149149
for k, v in pushdown_metadata_A.items()

0 commit comments

Comments
 (0)