1

I have been working with SCIP in python using PySCIPOpt. I could see SCIP also works with CPLEX and Gurobi engines, does anyone know how to use it in PySCIPOpt?

Thanks

rapha123
  • 179
  • 9
  • Your best bet is probably to ask on the SCIP mailing list mentioned [here](https://scip.zib.de/index.php#contact). – rkersh Apr 14 '20 at 02:33

1 Answers1

2

PySCIPOpt needs a suitable SCIP library, so all you need to do is compiling/linking SCIP with the LP solver of your choice.

You should check the documentation for details on how to do this. Generally, it should be as easy as

cmake -Bbuild -H. -DLPS=grb -DGUROBI_DIR=/path/to/gurobi
cmake --build build
mattmilten
  • 6,242
  • 3
  • 35
  • 65