Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v90-bugfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Jan 15, 2024
2 parents 3ed6d90 + d8f9fec commit 96ac528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/scip/lp.c
Original file line number Diff line number Diff line change
Expand Up @@ -12842,7 +12842,7 @@ SCIP_RETCODE SCIPlpSolveAndEval(
SCIPsetIsLT(set, objval, lp->cutoffbound - getFiniteLooseObjval(lp, set, prob)) )
{
SCIP_Bool simplex = (lp->lastlpalgo == SCIP_LPALGO_PRIMALSIMPLEX || lp->lastlpalgo == SCIP_LPALGO_DUALSIMPLEX);
if( !(lperror) && (fastmip > 0) && simplex )
if( !(*lperror) && (fastmip > 0) && simplex )
{
fastmip = 0;
SCIP_CALL( lpSolve(lp, set, messagehdlr, stat, prob, SCIP_LPALGO_DUALSIMPLEX, -1, -1,
Expand Down
2 changes: 2 additions & 0 deletions src/scip/scip_solve.c
Original file line number Diff line number Diff line change
Expand Up @@ -3332,6 +3332,8 @@ SCIP_RETCODE SCIPfreeTransform(
SCIP* scip /**< SCIP data structure */
)
{
assert(scip != NULL);

SCIP_CALL( SCIPcheckStage(scip, "SCIPfreeTransform", TRUE, TRUE, TRUE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, TRUE, FALSE, FALSE, FALSE) );

/* release variables and constraints captured by reoptimization */
Expand Down

0 comments on commit 96ac528

Please sign in to comment.