logistics 0.0.2

Logistics Engineering Library
docs.rs failed to build logistics-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: logistics-0.0.0

logistics

Rust Logistics Engineering Library

About

This is a logistics engineering library developed from the ground up for both software developers and logistics engineers with programming experience.

Shipment Routing

The first target of the library is to provide an efficient method for generating optimized vehicle routes for small and highly-defined transportation optimization models.

Scope

Models will be limited to single-origin, one-dimension capacities and demands, and optimized only using the inital distance and capacity constraints. Each iteration of this component's development will aim to expand scope little by little.

Constraints

  • Maximum Vehicle Capacity: The total number of units allowed in a vehicle for a given route.

  • Maximum Route Distance: The maximum cummulative travel distance for a route.

Inputs

  • Constraint Setup
  • Depot Latitude and Longitude
  • Demand Latitudes and Logitudes
  • Demand Units

Development Strategy

This library is intended for developers and logistics engineers looking for optimization capabilities for their systematic use-cases. So the project will focus on the problem domain as each initial target and then retroactively refactored into more modular components.

For example, the routing solution will rely on an implementation of an integer constraint solver. This solver won't be fleshed out first and then a Shipment Routing component is fit to the solver. The design is reversed, forcing the solver to accommodate the business constraints prior to being completed.

This allows for more flexible solver development and, in general, a better development workflow for logistics.

Inspirations