Files
ortools-clone/ortools/constraint_solver
Laurent Perron 956f4bc362 bump routing code
2024-10-18 11:51:13 +02:00
..
2024-04-12 18:12:48 +02:00
2024-07-15 10:56:56 +02:00
2024-04-19 17:53:23 +02:00
2024-07-22 17:34:01 +02:00
2024-10-18 11:51:13 +02:00
2024-08-12 13:17:56 +02:00

Constraint Programming (CP) and Routing Solver

This directory contains a Constraint Programming (CP) solver and a Vehicle Routing solver.

CP solver

Constraint Programming is a technology issued from AI and used in operations research.

To begin, skim:

Parameters

  • solver_parameters.proto: This file contains protocol buffers for all parameters of the CP solver.
  • search_limit.proto: Holds parameters to limit the search space within the CP solver, which is important for performance.

Solution

Routing solver

Vehicle Routing is a useful extension that is implemented on top of the CP solver library. It is now available as a separate module.

Recipes

You can find a set of code recipes in the documentation directory.