Skip to content

Commit 39ba04d

Browse files
committed
Merge remote-tracking branch 'origin/v91-bugfix' into v9-minor
2 parents 855ed6f + d7027af commit 39ba04d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scip/cons_pseudoboolean.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3975,7 +3975,7 @@ SCIP_RETCODE computeConsAndDataChanges(
39753975

39763976
allconsanddatas = conshdlrdata->allconsanddatas;
39773977
assert(allconsanddatas != NULL);
3978-
assert(conshdlrdata->nallconsanddatas > 0);
3978+
assert(conshdlrdata->nallconsanddatas >= 0);
39793979
assert(conshdlrdata->nallconsanddatas <= conshdlrdata->sallconsanddatas);
39803980

39813981
for( c = conshdlrdata->nallconsanddatas - 1; c >= 0; --c )

0 commit comments

Comments
 (0)