ortools
OR-Tools
This is the reference documentation for Google OR-Tools.
This repository contains several component:
Link with the C++ layer
Knapsack solver
Graph and flow algorithms
ortools.graph.python.linear_sum_assignment
,ortools.graph.python.max_flow
,ortools.graph.python.min_cost_flow
,
Routing library and legacy Constraint Programming Solver
Minimalistic linear solver wrapper
CP-SAT
ortools.sat.python.cp_model
,ortools.util.python.sorted_interval_list
,ortools.sat.cp_model_pb2
ortools.sat.sat_parameters_pb2
Legacy linear solver wrapper
Linear solver backends
PSPLIB Parser
1r''' 2# OR-Tools 3 4This is the reference documentation for Google OR-Tools. 5 6This repository contains several component: 7 8### Link with the C++ layer 9 - `ortools.init.python.init`, 10 11### Knapsack solver 12 - `ortools.algorithms.python.knapsack_solver`, 13 14### Graph and flow algorithms 15- `ortools.graph.python.linear_sum_assignment`, 16- `ortools.graph.python.max_flow`, 17- `ortools.graph.python.min_cost_flow`, 18 19### Routing library and legacy Constraint Programming Solver 20 - `ortools.constraint_solver.pywrapcp`, 21 22### Minimalistic linear solver wrapper 23- `ortools.linear_solver.python.model_builder` 24 25### CP-SAT 26 - `ortools.sat.python.cp_model`, 27 - `ortools.util.python.sorted_interval_list`, 28 - `ortools.sat.cp_model_pb2` 29 - `ortools.sat.sat_parameters_pb2` 30 31### Legacy linear solver wrapper 32 - `ortools.linear_solver.pywraplp`, 33 - `ortools.linear_solver.linear_solver_pb2`, 34 35### Linear solver backends 36 - `ortools.bop.bop_parameters_pb2`, 37 - `ortools.glop.parameters_pb2`, 38 - `ortools.pdlp`, 39 40### PSPLIB Parser 41 - `ortools.scheduling.python.rcpsp`, 42''' 43 44__docformat__ = "markdown" # explicitly disable rST processing above. 45__version__ = "9.11.9999"