remove parallel for

This commit is contained in:
kai
2025-05-06 15:21:25 +02:00
parent 64d9898be2
commit 7875707652

View File

@@ -15,7 +15,6 @@ void DBSCAN::run(const std::vector<Point> &points) {
initializeNeighbors();
int clusterIndex = 0;
// #pragma omp parallel for
for (int i = 0; i < n; ++i) {
Point &point = dataset_[i];
if (point.clusterID < 0) {