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 abbbc33 commit 3bccee8Copy full SHA for 3bccee8
src/scip/prop_symmetry.c
@@ -2052,9 +2052,9 @@ SCIP_RETCODE ensureSymmetryMovedpermvarscountsComputed(
2052
propdata->nmovedimplintpermvars = 0;
2053
propdata->nmovedcontpermvars = 0;
2054
2055
- for (p = 0; p < propdata->nperms; ++p)
+ for (v = 0; v < propdata->npermvars; ++v)
2056
{
2057
- for (v = 0; v < propdata->npermvars; ++v)
+ for (p = 0; p < propdata->nperms; ++p)
2058
2059
if ( propdata->perms[p][v] != v )
2060
@@ -2078,6 +2078,7 @@ SCIP_RETCODE ensureSymmetryMovedpermvarscountsComputed(
2078
SCIPerrorMessage("Variable provided with unknown vartype\n");
2079
return SCIP_ERROR;
2080
}
2081
+ break;
2082
2083
2084
0 commit comments