Hello,
I would like to find realisable solutions of a MIP problem using the constraint solver of OR-TOOLS, but before coding my problem, I'm wondering concerning the langage I should use.
Is there any chance that the CP solver could be slower if I modelize my problem with Python API contrary to the same modelisation coded with Java or C++ ?
I guess that both use the underlying C++ engine of the solver, but I wonder if the ease of modeling with the Python API (in particular for constraint declaration, summing over a dimension without having to create auxiliary variables, overloaded operators,...) could result in a slower resolution compared to a low-level implementation in Java or C++.
Thanks