Skip to content

Commit 4ae437b

Browse files
Merge branch 'ignore-rowtoolong-for-certificaterow' into 'master'
Move comment on rowtoolong for certificaterow in cuts.c See merge request integer/scip!3860
2 parents ca402bb + 64cccf5 commit 4ae437b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scip/cuts.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3610,9 +3610,9 @@ SCIP_RETCODE SCIPaggrRowSumRows(
36103610
}
36113611
else
36123612
{
3613+
/* the certificate row may exceed the limit maxaggrlen */
36133614
SCIP_CALL( addOneRowSafely(scip, certificaterow, rows[rowinds[k]], weights[rowinds[k]], sidetypebasis,
36143615
allowlocal, 0, nvars, &rowtoolong, &rowusedcert, valid, &lhsused) );
3615-
/* the certificate row may exceed the limit maxaggrlen */
36163616
assert(!rowtoolong);
36173617
}
36183618
if( rowusedcert )
@@ -3678,9 +3678,9 @@ SCIP_RETCODE SCIPaggrRowSumRows(
36783678
}
36793679
else
36803680
{
3681+
/* the certificate row may exceed the limit maxaggrlen */
36813682
SCIP_CALL( addOneRowSafely(scip, certificaterow, rows[k], weights[k], sidetypebasis, allowlocal, 0,
36823683
nvars, &rowtoolong, &rowusedcert, valid, &lhsused) );
3683-
/* the certificate row may exceed the limit maxaggrlen */
36843684
assert(!rowtoolong);
36853685
}
36863686
if( rowusedcert )

0 commit comments

Comments
 (0)