Skip to content

Commit

Permalink
checkChainRedundancy with unordered_sets
Browse files Browse the repository at this point in the history
  • Loading branch information
Woosub-Kim committed Sep 6, 2024
1 parent 5a4ad0b commit 3bcdaba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strucclustutils/scoremultimer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ class DBSCANCluster {
std::vector<unsigned int> neighborsOfCurrNeighbor;
std::unordered_set<unsigned int> foundNeighbors;
std::vector<NeighborsWithDist> neighborsWithDist;
std::set<unsigned int> qFoundChainKeys;
std::set<unsigned int> dbFoundChainKeys;
std::unordered_set<unsigned int> qFoundChainKeys;
std::unordered_set<unsigned int> dbFoundChainKeys;
std::vector<float> distMatrix;
std::vector<cluster_t> currClusters;
std::set<cluster_t> &finalClusters;
Expand Down

0 comments on commit 3bcdaba

Please sign in to comment.