Skip to content

Commit

Permalink
remove print for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski authored and victorprincipe committed Mar 13, 2023
1 parent b52e992 commit e43ea05
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion skmatter/sample_selection/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,6 @@ def _directional_convex_hull_distance(self, points):
all_directional_distances = _directional_distance(
self._directional_equations_, points
)
print(all_directional_distances)
# we get negative distances for each plane to check if any distance is below the threshold
below_directional_convex_hull = np.any(
all_directional_distances < -self.tolerance, axis=1
Expand Down

0 comments on commit e43ea05

Please sign in to comment.