Skip to content

Commit

Permalink
Merge branch 'undercover-subscip-depth' into 'v80-bugfix'
Browse files Browse the repository at this point in the history
Set subscip depth in heuristic undercover

See merge request integer/scip!3197
  • Loading branch information
sbolusani committed Sep 22, 2023
2 parents a3b6591 + 5dd4b2c commit 43a68ee
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 @@ -513,6 +513,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 43a68ee

Please sign in to comment.