Conversation
> [!NOTE] > This commit message was generated by AI. Apply solver options before reading the problem file so display/verblevel=0 suppresses the initial model-loading output. Add a regression test and an upcoming release note.
Merging this PR will not alter performance
Comparing Footnotes
|
> [!NOTE] > This commit message was generated by AI. Annotate the solver options dictionary to match the heterogeneous keyword arguments accepted by Model.solve.
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
This commit message was generated by AI.
Apply solver options before reading the problem file so display/verblevel=0 suppresses the initial model-loading output. Add a regression test and an upcoming release note.
Changes proposed in this Pull Request
Moved call to
readProblemso that solver options are applied first.Previously model stdout output could not be completely silenced since
readProblemprints to console by default.Important note:
SCIP option
reading/initialconssconfiguresreadProblem, so previously this option was ignored (had no effect).After this change, the option will no longer be ignored.
For users who specified this option without realizing it is ignored, this can lead to different outputs.
By default this option is
True, so users who specifiedreading/initialconss=Falsecan start getting1e99sentinel for dual instead of real dual if solver stops early due to objective cutoff.Also I am not sure whether it is intentional that
SCIP_INVALID=1e99are not parsed as NaN. I can fix this also if you want.Checklist
AGENTS.md).doc.doc/release_notes.rstof the upcoming release is included.