We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db45ef0 commit 0ebb75fCopy full SHA for 0ebb75f
src/include/souffle/datastructure/EquivalenceRelation.h
@@ -114,14 +114,10 @@ class EquivalenceRelation {
114
other.genAllDisjointSetLists();
115
116
// iterate over partitions at a time
117
- for (typename StatesMap::chunk it : other.equivalencePartition.getChunks(MAX_THREADS)) {
118
- for (auto& p : it) {
119
- value_type rep = p.first;
120
- StatesList& pl = *p.second;
121
- const std::size_t ksize = pl.size();
122
- for (std::size_t i = 0; i < ksize; ++i) {
123
- this->sds.unionNodes(rep, pl.get(i));
124
- }
+ for (auto&& [rep, pl] : other.equivalencePartition) {
+ const std::size_t ksize = pl->size();
+ for (std::size_t i = 0; i < ksize; ++i) {
+ this->sds.unionNodes(rep, pl->get(i));
125
}
126
127
// invalidate iterators unconditionally
0 commit comments