We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6d78b commit 7d13a59Copy full SHA for 7d13a59
1 file changed
rogueviz/subquotient.cpp
@@ -54,7 +54,9 @@ void create_subquotient(int qty = -1, int id = 0) {
54
55
map<int, int> by_cycle;
56
57
- for(auto [s, wb]: vmap) {
+ for(auto swb: vmap) {
58
+ auto& s = swb.first;
59
+ auto& wb = swb.second;
60
if(s == wb.at) { vertex++; continue; }
61
bool is_edge = false;
62
for(int j=0; j<s->type; j++) if(s->move(j) == wb.at && (wb+j).peek() == s)
0 commit comments