/*! @file * @author Laurent Perron * @author Corentin "Mizux" Le Molgat */ // WARNING: must keep the empty line between example otherwise doxygen has an // undefined behaviour... /// @namespace operations_research OR-Tools root namespace. /// @example{lineno} tsp.cc /// Simple TSP example. /// @example{lineno} tsp_circuit_board.cc /// Simple TSP example. /// @example{lineno} tsp_cities.cc /// Simple TSP example. /// @example{lineno} tsp_distance_matrix.cc /// Simple TSP example. /// @example{lineno} vrp_capacity.cc /// Simple VRP example. /// @example{lineno} vrp.cc /// Simple VRP example. /// @example{lineno} vrp_drop_nodes.cc /// Simple VRP example. /// @example{lineno} vrp_global_span.cc /// Simple VRP example. /// @example{lineno} vrp_initial_routes.cc /// Simple VRP example. /// @example{lineno} vrp_pickup_delivery.cc /// Simple VRP example. /// @example{lineno} vrp_pickup_delivery_fifo.cc /// Simple VRP example. /// @example{lineno} vrp_pickup_delivery_lifo.cc /// Simple VRP example. /// @example{lineno} vrp_resources.cc /// Simple VRP example. /// @example{lineno} vrp_starts_ends.cc /// Simple VRP example. /// @example{lineno} vrp_time_windows.cc /// Simple VRP example. /// @example{lineno} vrp_with_time_limit.cc /// Simple VRP example. /*! @mainpage OR-Tools C++ Reference This is the reference documentation for Google OR-Tools. This repository contains several components:
Components table
DirectoriesDescription
@ref @PROJECT_SOURCE_DIR@/ortools/base "ortools/base" Fundamental utilities for the other or-tools components.
@ref @PROJECT_SOURCE_DIR@/ortools/init "ortools/init" Core library initialization functions.
@ref @PROJECT_SOURCE_DIR@/ortools/algorithms "ortools/algorithms" Knapsack solver and related algorithms.
@ref @PROJECT_SOURCE_DIR@/ortools/graph "ortools/graph"\n @ref @PROJECT_BINARY_DIR@/ortools/graph "build/ortools/graph" Network flow library and related graph algorithms.
@ref @PROJECT_SOURCE_DIR@/ortools/bop "ortools/bop"\n @ref @PROJECT_BINARY_DIR@/ortools/bop "build/ortools/bop" Google's Boolean Optimization Programming Solver.
@ref @PROJECT_SOURCE_DIR@/ortools/glop "ortools/glop"\n @ref @PROJECT_BINARY_DIR@/ortools/glop "build/ortools/glop" Google's Linear Optimization Programming Solver.
@ref @PROJECT_SOURCE_DIR@/ortools/linear_solver "ortools/linear_solver"\n @ref @PROJECT_BINARY_DIR@/ortools/linear_solver "build/ortools/linear_solver" Unified wrapper for linear (LP) and mixed integer (MIP) solvers.
@ref @PROJECT_SOURCE_DIR@/ortools/math_opt "ortools/math_opt"\n @ref @PROJECT_BINARY_DIR@/ortools/math_opt "build/ortools/math_opt" Next-generation unified wrapper for LP and MIP solvers.
@ref @PROJECT_SOURCE_DIR@/ortools/sat "ortools/sat"\n @ref @PROJECT_BINARY_DIR@/ortools/sat "build/ortools/sat" Our next-gen constraint programming (CP) solver, CP-SAT.
@ref @PROJECT_SOURCE_DIR@/ortools/pdlp "ortools/pdlp"\n @ref @PROJECT_BINARY_DIR@/ortools/pdlp "build/ortools/pdlp" A large-scale linear and quadratic programming solver.
@ref @PROJECT_SOURCE_DIR@/ortools/constraint_solver "ortools/constraint_solver"\n @ref @PROJECT_BINARY_DIR@/ortools/constraint_solver "build/ortools/constraint_solver" Google's legacy Constraint Programming (CP) Solver.
@ref @PROJECT_SOURCE_DIR@/ortools/routing "ortools/routing"\n @ref @PROJECT_BINARY_DIR@/ortools/routing "build/ortools/routing" Google's Routing Solver.
@ref @PROJECT_SOURCE_DIR@/ortools/packing "ortools/packing"\n @ref @PROJECT_BINARY_DIR@/ortools/packing "build/ortools/packing" Packing solver.
@ref @PROJECT_SOURCE_DIR@/ortools/scheduling "ortools/scheduling"\n @ref @PROJECT_BINARY_DIR@/ortools/scheduling "build/ortools/scheduling" Scheduling solver.
@ref @PROJECT_SOURCE_DIR@/ortools/set_cover "ortools/set_cover"\n @ref @PROJECT_BINARY_DIR@/ortools/set_cover "build/ortools/set_cover" Set Covering Solver
@ref @PROJECT_SOURCE_DIR@/ortools/util "ortools/util"\n @ref @PROJECT_BINARY_DIR@/ortools/util "build/ortools/util" Code shared between the different tools and libraries.
*/