Skip to content

Commit ba24e75

Browse files
I001 for example_usage.py and test_kdtree.py
1 parent 7c1aa7e commit ba24e75

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

data_structures/kd_tree/example/example_usage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import numpy as np
2-
from data_structures.kd_tree.example.hypercube_points import hypercube_points
32
from data_structures.kd_tree.build_kdtree import build_kdtree
3+
from data_structures.kd_tree.example.hypercube_points import hypercube_points
44
from data_structures.kd_tree.nearest_neighbour_search import nearest_neighbour_search
55

66

data_structures/kd_tree/tests/test_kdtree.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import numpy as np
22
from data_structures.kd_tree.build_kdtree import build_kdtree
3-
from data_structures.kd_tree.nearest_neighbour_search import nearest_neighbour_search
4-
from data_structures.kd_tree.kd_node import KDNode
53
from data_structures.kd_tree.example.hypercube_points import hypercube_points
4+
from data_structures.kd_tree.kd_node import KDNode
5+
from data_structures.kd_tree.nearest_neighbour_search import nearest_neighbour_search
66

77

88
def test_build_kdtree():

0 commit comments

Comments
 (0)