Skip to content

Commit aa99a71

Browse files
authored
Update _hdbscan_tree.pyx
1 parent 34be7d8 commit aa99a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdbscan/_hdbscan_tree.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ cpdef np.ndarray condense_tree(np.ndarray[np.double_t, ndim=2] hierarchy,
9191
relabel = np.empty(root + 1, dtype=np.intp)
9292
relabel[root] = num_points
9393
result_list = []
94-
ignore = np.zeros(len(node_list), dtype=int)
94+
ignore = np.zeros(len(node_list), dtype=np.int8)
9595

9696
for node in node_list:
9797
if ignore[node] or node < num_points:

0 commit comments

Comments
 (0)