Files
ortools-clone/ortools/constraint_solver/docs
Corentin Le Molgat 312959af70 routing: mv routing stuff from constraint_solver/ to routing/
* remove routing_ prefix to file
* now have a pywrapcp and a pywraprouting binding.
2024-06-21 16:35:46 +02:00
..

Overview

You can find here the documentation for the two following OR-Tools components.

  • CP Solver

    Constraint programming (CP) is the name given to identifying feasible solutions out of a very large set of candidates, where the problem can be modeled in terms of arbitrary constraints.

    note: We strongly recommend using the CP-SAT solver rather than the original CP solver.

  • Routing Solver

    A specialized library for identifying best vehicle routes given constraints.

    This library extension is implemented on top of the CP Solver library.