File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Fixed bugs
12
12
- disable objective limit during lexicographic dual minimization to keep feasibility status
13
13
- declare infinite bound inference infeasible in SCIPinferVarLbCons() and SCIPinferVarUbCons() to maintain correct loose LP values
14
14
- fixed update of consssorted flags in a variable expressions data when adding an additional constraint using this variable
15
+ - corrected computation of number of variables affected by symmetry
15
16
16
17
Build system
17
18
------------
Original file line number Diff line number Diff line change @@ -2052,9 +2052,9 @@ SCIP_RETCODE ensureSymmetryMovedpermvarscountsComputed(
2052
2052
propdata -> nmovedimplintpermvars = 0 ;
2053
2053
propdata -> nmovedcontpermvars = 0 ;
2054
2054
2055
- for (p = 0 ; p < propdata -> nperms ; ++ p )
2055
+ for (v = 0 ; v < propdata -> npermvars ; ++ v )
2056
2056
{
2057
- for (v = 0 ; v < propdata -> npermvars ; ++ v )
2057
+ for (p = 0 ; p < propdata -> nperms ; ++ p )
2058
2058
{
2059
2059
if ( propdata -> perms [p ][v ] != v )
2060
2060
{
@@ -2078,6 +2078,7 @@ SCIP_RETCODE ensureSymmetryMovedpermvarscountsComputed(
2078
2078
SCIPerrorMessage ("Variable provided with unknown vartype\n" );
2079
2079
return SCIP_ERROR ;
2080
2080
}
2081
+ break ;
2081
2082
}
2082
2083
}
2083
2084
}
You can’t perform that action at this time.
0 commit comments