Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to allow SCIP version 9? #286

Open
GregPlowman opened this issue Apr 4, 2024 · 0 comments
Open

Update to allow SCIP version 9? #286

GregPlowman opened this issue Apr 4, 2024 · 0 comments

Comments

@GregPlowman
Copy link
Contributor

Can SCIP.jl be updated to allow SCIP version 9.

It seems there are version 9 jlls for SCIP and SCIP_PaPILO:

SCIP_jll 900.0.0+1
SCIP_PaPILO_jll 900.0.0+0

Currently, SCIP version is limited in init.jl:

current = VersionNumber("$major.$minor.$patch")
required = VersionNumber("8")
upperbound = VersionNumber("9")
if current < required || current >= upperbound
    @error(
        "SCIP is installed at version $current, " *
        "supported are $required up to (excluding) $upperbound."
    )
end

Note that current >= upperbound results in the error.
Manually editing to current > upperbound seems to work with a manual installation of SCIP version 9, which is required for Windows.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant