Skip to content

Latest commit

 

History

History
167 lines (113 loc) · 10.3 KB

API.md

File metadata and controls

167 lines (113 loc) · 10.3 KB

Table of Contents

TSP

Heuristically solves the Travelling Salesman Problem (TSP) with a single vehicle. For multiple vehicles or additional constraints see the Vehicle Routing Problem (VRP). The TSP solver is split into two: the TSP constructor taking constructor-specific options and the asynchronous Solve function taking search-specific options.

Constructor

Constructs a TSP solver object. Initializes and caches user data internally for efficiency.

Parameters

Object with solver-specific options:

  • numNodes Number Number of locations in the problem ("nodes").
  • costs Array Cost array the solver minimizes in optimization. Can for example be duration, distance but does not have to be. Two-dimensional with costs[from][to] being a Number representing the cost for traversing the arc from from to to.

Examples

var costs = [[0, 10, 10],
             [10, 0, 10],
             [10, 10, 0]];

var tspSolverOpts = {
  numNodes: 3,
  costs: costs
};

var TSP = new node_or_tools.TSP(tspSolverOpts);

Solve

Runs the TSP solver asynchronously to search for a solution.

Parameters

  • computeTimeLimit Number Time limit in milliseconds for the solver. In general the longer you run the solver the better the solution (if there is any) will be. The solver will never run longer than this time limit but can finish earlier.
  • depotNode Number The depot node index in the range [0, numNodes - 1] where all vehicles start and end at.

Examples

var tspSearchOpts = {
  computeTimeLimit: 1000,
  depotNode: depotNode
};

TSP.Solve(tspSearchOpts, function (err, solution) {
  if (err) return console.log(err);
  console.log(util.inspect(solution, {showHidden: false, depth: null}));
});

Result

Array with Number indices into the locations for the vehicle to visit in order.

Examples

[ 4, 8, 12, 13, 14, 15, 11, 10, 9, 5, 6, 7, 3, 2, 1 ]

VRP

Heuristically solves the Vehicle Routing Problem (VRP) with multiple vehicles and constraints (time windows, capacities and more). The VRP solver is split into two: the VRP constructor taking constructor-specific options and the asynchronous Solve function taking search-specific options.

Constructor

Constructs a VRP solver object. Initializes and caches user data internally for efficiency.

Parameters

Object with solver-specific options:

  • numNodes Number Number of locations in the problem ("nodes").
  • costs Array Cost array the solver minimizes in optimization. Can for example be duration, distance but does not have to be. Two-dimensional with costs[from][to] being a Number representing the cost for traversing the arc from from to to.
  • durations Array Duration array the solver uses for time constraints. Two-dimensional with durations[from][to] being a Number representing the duration for servicing node from plus the time for traversing the arc from from to to.
  • timeWindows Array Time window array the solver uses for time constraints. Two-dimensional with timeWindows[at] being an Array of two Number representing the start and end time point of the time window when servicing the node at is allowed. The solver starts from time point 0 (you can think of this as the start of the work day) and the time points need to be positive offsets to this time point.
  • demands Array Demands array the solver uses for vehicle capacity constraints. Two-dimensional with demands[from][to] being a Number representing the demand at node from, for example number of packages to deliver to this location. The to node index is unused and reserved for future changes; set demands[at] to a constant array for now. The depot should have a demand of zero.

Examples

var vrpSolverOpts = {
  numNodes: 3,
  costs: [[0, 10, 10], [10, 0, 10], [10, 10, 0]],
  durations: [[0, 2, 2], [2, 0, 2], [2, 2, 0]],
  timeWindows: [[0, 9], [2, 3], [2, 3]],
  demands: [[0, 0, 0], [1, 1, 1], [1, 1, 1]]
};

var VRP = new node_or_tools.VRP(vrpSolverOpts);

Solve

Runs the VRP solver asynchronously to search for a solution.

Parameters

  • computeTimeLimit Number Time limit in milliseconds for the solver. In general the longer you run the solver the better the solution (if there is any) will be. The solver will never run longer than this time limit but can finish earlier.
  • numVehicles Number The number of vehicles for servicing nodes.
  • depotNode Number The depot node index in the range [0, numNodes - 1] where all vehicles start and end at.
  • timeHorizon Number The last time point the solver uses for time constraints. The solver starts from time point 0 (you can think of this as the start of the work day) and and ends at timeHorizon (you can think of this as the end of the work day).
  • vehicleCapacity Number The maximum capacity for goods each vehicle can carry. Demand at nodes decrease the capacity.
  • routeLocks Array Route locks array the solver uses for locking (sub-) routes into place, per vehicle. Two-dimensional with routeLocks[vehicle] being an Array with node indices vehicle has to visit in order. Can be empty. Must not contain the depots.
  • pickups Array with node indices for picking up good. The corresponding delivery node index is in the deliveries Array at the same position (parallel arrays). For a pair of pickup and delivery indices: pickup location comes before the corresponding delivery location and is served by the same vehicle.
  • deliveries Array with node indices for delivering picked up goods. The corresponding pickup node index is in the pickups Array at the same position (parallel arrays). For a pair of pickup and delivery indices: pickup location comes before the corresponding delivery location and is served by the same vehicle.

Examples

var vrpSearchOpts = {
  computeTimeLimit: 1000,
  numVehicles: 3,
  depotNode: depotNode,
  timeHorizon: 9 * 60 * 60,
  vehicleCapacity: 3,
  routeLocks: [[], [3, 4], []]
  pickups: [4, 9],
  deliveries: [12, 8]
};

VRP.Solve(vrpSearchOpts, function (err, solution) {
  if (err) return console.log(err);
  console.log(util.inspect(solution, {showHidden: false, depth: null}));
});

Result

Object with:

  • cost Number internal objective to optimize for.
  • routes Array with Number indices into the locations for the vehicle to visit in order. Per vehicle.
  • times Array with Number [earliest, latest] service times at the locations for the vehicle to visit in order. Per vehicle. The solver starts from time point 0 (you can think of this as the start of the work day) and the time points are positive offsets to this time point.

Examples

{ cost: 90,
  routes: [ [ 4, 5, 9 ], [ 3, 7, 8 ], [ 1, 2, 6 ] ],
  times: 
   [ [ [ 2700, 3600 ], [ 8400, 9300 ], [ 17100, 18000 ] ],
     [ [ 2100, 2400 ], [ 8400, 8700 ], [ 17700, 18000 ] ],
     [ [ 900, 10800 ], [ 3000, 12900 ], [ 8100, 18000 ] ] ]}