I am using the Google OR-Tools librairy for Python to solve a VRP problem.My problem is quite simple : It is a basic VRP problem where vehicles are "cleaning ve
In ortools if you have only 0-1 variables you can either use CP-SAT from from ortools.sat.python import cp_model or you can use from ortools.linear_solver impo
In ortools if you have only 0-1 variables you can either use CP-SAT from from ortools.sat.python import cp_model or you can use from ortools.linear_solver impo
My models is inefficient and taking too long to find valid solutions so I think knowing how many times the constraints are being broken would be useful for test
My constraint problem has become too complex, and I'm looking to know if the Choco-Solver framework which I'm using to model and solve the problem supports a pa