Skip to content

Commit

Permalink
copy quiet flag into solverscip of concurrent opt
Browse files Browse the repository at this point in the history
- for #61
  • Loading branch information
svigerske committed Sep 19, 2023
1 parent 1d0b502 commit b9a1f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Fixed bugs
- delay removal of clique lists from SCIPvarRemoveCliquesImplicsVbs() into cliqueCleanup() to avoid segmentation faults by incomplete cleanups after variable conversions
- reject sub-solutions with invalid objectives in SCIPtranslateSubSols() due to contradicting infinite contributions
- correct column index in getMinMaxActivityResiduals() to make presolver dualinfer work
- copy quiet flag from main scip's message handler to the one of solverscip in concurrent optimization

@section RN804 SCIP 8.0.4
*************************
Expand Down
1 change: 1 addition & 0 deletions src/scip/concsolver_scip.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ SCIP_RETCODE initConcsolver(

/* create the concurrent solver's SCIP instance and set up the problem */
SCIP_CALL( SCIPcreate(&data->solverscip) );
SCIPsetMessagehdlrQuiet(data->solverscip, SCIPmessagehdlrIsQuiet(SCIPgetMessagehdlr(scip)));
SCIP_CALL( SCIPhashmapCreate(&varmapfw, SCIPblkmem(data->solverscip), data->nvars) );
SCIP_CALL( SCIPcopy(scip, data->solverscip, varmapfw, NULL, SCIPconcsolverGetName(concsolver), TRUE, FALSE, FALSE,
FALSE, &valid) );
Expand Down

0 comments on commit b9a1f09

Please sign in to comment.