Files
ortools-clone/ortools/routing
2023-05-30 23:23:50 +02:00
..
2023-03-06 17:06:21 +01:00
2023-03-06 15:46:44 +01:00
2022-10-14 18:06:45 +02:00
2022-10-14 18:06:45 +02:00
2022-11-07 16:39:45 +01:00
2022-11-07 16:39:45 +01:00
2023-03-06 15:46:44 +01:00
2022-10-14 18:06:45 +02:00
2022-10-14 18:06:45 +02:00
2023-03-06 15:46:44 +01:00
2023-05-06 09:03:01 +02:00
2022-10-14 18:06:45 +02:00
2023-03-06 17:06:21 +01:00
2022-10-14 18:06:45 +02:00
2022-10-14 18:06:45 +02:00
2022-10-14 18:06:45 +02:00
2023-05-06 09:03:01 +02:00
2023-05-22 10:31:56 +02:00
2023-05-24 15:34:57 +02:00
2023-03-06 17:06:21 +01:00
2023-05-06 09:03:01 +02:00
2023-05-24 15:34:57 +02:00
2023-03-06 15:46:44 +01:00
2023-05-06 09:03:01 +02:00
2022-10-14 18:06:45 +02:00

Routing

This folder contains utilities related to routing problems. For now, it only contains parsers for usual file formats and utilities directly related to these file formats.

solution_serializer.h contains a generic serializer for routing solutions for many formats.

| Problem type | File format | Corresponding | Data sets |
      :             : parser              :                        :
| ------------- | ----------- | ------------------- | ---------------------- |
| TSP | TSPLIB | tsplib_parser.h | TSPLIB95 |
| TSPTW | TSPTW | tsptw_parser.h | TSPTW |
| PDTSP / TSPPD | PDTSP | pdtsp_parser.h | PDTSP |
| CVRP | TSPLIB | tsplib_parser.h | TSPLIB95 |
| VRPTW | Solomon | solomon_parser.h | Solomon, |
      :             :                     : [Homberger][homberger] :

| CARP | CARPLIB | carplib_parser.h | CARPLIB | | NEARP | NEARPLIB | nearplib_parser.h | NEARPLIB |

In the future, this folder will contain the whole routing solver.