Skip to content

Commit

Permalink
Merge branch '3724-ctest-fails-with-any-lp-solver-symassert2' into 'm…
Browse files Browse the repository at this point in the history
…aster'

fix assert in prop_symmetry

See merge request integer/scip!3467
  • Loading branch information
Christopher Hojny committed Jul 22, 2024
2 parents 16889d3 + 2988233 commit 24fd43b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scip/prop_symmetry.c
Original file line number Diff line number Diff line change
Expand Up @@ -6193,7 +6193,7 @@ SCIP_Bool isEquallyCenteredOrbitope(
assert( vardomaincenter != NULL );
assert( varidxmatrix != NULL );
assert( 0 <= startrow && startrow < endrow );
assert( 0 <= startcol && startrow < endcol );
assert( 0 <= startcol && startcol < endcol );

if ( equalrowcenters )
{
Expand Down

0 comments on commit 24fd43b

Please sign in to comment.