From c96c1fc8bcfb7c632456c62b9790cefe651f0f4e Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Mon, 9 Mar 2020 18:43:24 +0100 Subject: [PATCH] Rename sort method for points --- algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithm.py b/algorithm.py index 91fb04d..9432876 100644 --- a/algorithm.py +++ b/algorithm.py @@ -83,7 +83,7 @@ class NearestNeighborsSweep(Algorithm): # Populate event structure self._es = copy.deepcopy(self._input) # 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 def step(self):