-
When using a pre-built binary (e.g., as described in the installation instructions for Java on Debian) from https://github.com/google/or-tools/releases/tag/v9.2 I guess there is GLPK and SCIP included. Is there a way to forbid the usage of SCIP and GLPK during runtime, or is a build from source required in this case? Would it work to simply set the solver to CBC for example, via |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
GLPK is not included, for licensing problems. I will not do two builds, one with scip, one without. SCIP is a much more reliable solver than CBC :-( And it is one line to switch to a different solver. What is the issue ? You can build from source without SCIP. This is done by brew, freebsd. You need to pass a USE_SCIP=OFF to cmake or make. |
Beta Was this translation helpful? Give feedback.
-
You can use the CP-SAT freely.
It does not use SCIP.
You cannot use SCIP directly (this is the only way you can access it) in a
commercial setting without the proper license from ZIB.
Le mer. 30 mars 2022, 21:18, Raphaël Boudreault ***@***.***>
a écrit :
… Just to make sure I understand well. Does installing OR-Tools from the
current binaries for a *commercial use*, but only use the CP-SAT solver
to solve our models, allowed by the licensing requirements? Or the only way
would be to do a custom build of OR-Tools from source with the
USE_SCIP=OFF option? If the latest is true, it seems to be that the
academic license warning should also appear in the *Installing OR-Tools
for X from Binary on Y* sections of the documentation.
—
Reply to this email directly, view it on GitHub
<#3125 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACUPL3KL4S4YISMTDNCTDA3VCSSGJANCNFSM5OK2THYA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
GLPK is not included, for licensing problems.
I will not do two builds, one with scip, one without.
SCIP is a much more reliable solver than CBC :-( And it is one line to switch to a different solver.
What is the issue ?
You can build from source without SCIP. This is done by brew, freebsd. You need to pass a USE_SCIP=OFF to cmake or make.