https://github.com/jondgoodwin/route13c
Routing planner
https://github.com/jondgoodwin/route13c
Last synced: 19 days ago
JSON representation
Routing planner
- Host: GitHub
- URL: https://github.com/jondgoodwin/route13c
- Owner: jondgoodwin
- License: mit
- Created: 2019-03-19T21:17:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-24T02:31:14.000Z (almost 6 years ago)
- Last Synced: 2025-02-09T21:30:30.638Z (2 months ago)
- Language: C++
- Size: 131 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Route13c (C++ Planner)
`Route13` is a framework for building simulators and optimizers for transportation networks. `Route13` includes a number of naive, brute-force and heuristics based optimizers, but its pluggable architecture allows the use of more sophisticated optimizers, such as
[linear programming solvers](https://en.wikipedia.org/wiki/Linear_programming)
and ML models. `Route13` scenarios include forklifts in warehouses, baggage carts at airports, and trucks on highways. Basically anything that involves workers or equipment moving loads over a network while satisfying constraints around delivery times, equipment capacities, and worker schedules.For information on how `Route13` works, please see our
[design documents](https://github.com/MikeHopcroft/route13/blob/master/documentation/README.md).This repository delivers a high-performance tool that supports real-time planning, as part of the overall Route13 vision.