Rename sort method for points

This commit is contained in:
2020-03-09 18:43:24 +01:00
parent 2d4ee80b4c
commit c96c1fc8bc

View File

@@ -83,7 +83,7 @@ class NearestNeighborsSweep(Algorithm):
# Populate event structure # Populate event structure
self._es = copy.deepcopy(self._input) self._es = copy.deepcopy(self._input)
# Sort the input elements # Sort the input elements
self._num_steps["sort"] = point.sort_point_set(self._es) self._num_steps["sort"] = point.sort_set(self._es)
return True return True
def step(self): def step(self):