Statistic

A statistic entity represents total statistic for the whole solution or one tour. It has the following structure:

  • cost: a cost in abstract units
  • distance: a total distance in distance units
  • duration: a total duration in duration units
  • times: a duration split into specific groups:
    • driving: a total driving duration
    • serving: a total serving jobs duration
    • waiting: a total waiting time for time windows
    • break: a total break duration
    • commuting: a total commute duration (used only by vicinity clustering)
    • parking: a total parking time (used only by vicinity clustering)

A solution statistic example:

  "statistic": {
   "cost": 41.504842000000004,
   "distance": 13251,
   "duration": 3507,
   "times": {
     "driving": 2367,
     "serving": 1140,
     "waiting": 0,
     "break": 0,
     "commuting": 0,
     "parking": 0
   }
 },