python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
writeBestSol method not working in pyscipopt
I want to get a solution of one optimization problem, and use it to warm start another problem.
from pyscipopt import Model
model = Model("Example")
x = model.addVar("x")
y = mode...
optimal-br
Votes: 0
Answers: 1
Implementing multiple branching rules in the same branch and bound tree in PySCIPOpt
I would like to implement a custom branching rule initially (for a few nodes in the top of the tree), and then use Scip's implementation of vanilla full strong branching rule (or some other rule like ...
optimal-br
Votes: 0
Answers: 1
Setting constraints with variables as exponents in PySCIPOpt
I want to solve an MINLP problem with SCIP in Python and therefore use PySCIPOpt.
I already introduced the variables, the objective function, and set the constraints (as far as it was possible, given ...
LukPau
Votes: 0
Answers: 1
How to get pyscipopt running on macOS
I am trying to install pyscipopt from the SCIP Optimization Suite in order to use SCIP solver in Python. I already downloaded SCIP Optimization Suite from the SCIP Website. Unfortunately, my mac termi...
LukPau
Votes: 0
Answers: 3