Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Oct 25, 2024
1 parent 215c1cc commit ebce8ec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ultranest/mlfriends.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ def update_clusters(
Clustering is performed on a transformed coordinate space (`tpoints`).
Returned values are based on upoints.
"""
print(clusterids)
if clusterids is None:
clusterids = np.zeros(len(tpoints), dtype=int_dtype)
return _update_clusters(upoints, tpoints, maxradiussq, clusterids)
Expand Down
1 change: 0 additions & 1 deletion ultranest/popstepsampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,6 @@ def __next__(
nc += self.popsize

# Updating the pool of points based on the newly sampled points
print(worker_running.dtype, status.dtype)
tleft, tright, worker_running, status, allu, allL, allp, n_discarded_it = update_vectorised_slice_sampler(
t, tleft, tright, proposed_L, proposed_u, proposed_p, worker_running, status, Lmin, self.shrink_factor,
allu, allL, allp, self.popsize)
Expand Down

0 comments on commit ebce8ec

Please sign in to comment.