Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v80-bugfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Sep 22, 2023
2 parents 116cfb0 + 43a68ee commit 8deaebe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/scip/heur_undercover.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,7 @@ SCIP_RETCODE createCoveringProblem(
/* create problem data structure */
(void) SCIPsnprintf(name, SCIP_MAXSTRLEN, "%s_covering", SCIPgetProbName(scip));
SCIP_CALL( SCIPcreateProb(coveringscip, name, NULL, NULL, NULL, NULL, NULL, NULL, NULL) );
SCIPsetSubscipDepth(coveringscip, SCIPgetSubscipDepth(scip) + 1);

/* allocate and initialize to zero counter arrays for weighted objectives */
SCIP_CALL( SCIPallocBufferArray(scip, &consmarker, nvars) );
Expand Down

0 comments on commit 8deaebe

Please sign in to comment.