Giter VIP home page Giter VIP logo

the-labeling-algorithm-for-the-shortest-path-problem-with-time-windows's Introduction

The Labeling Algorithm for the Shortest Path Problem with Time Windows

Reference: Desrochers M, Soumis F. A generalized permanent labelling algorithm for the shortest path problem with time windows[J]. INFOR: Information Systems and Operational Research, 1988, 26(3): 191-212.

The shortest path problem with time windows aims to determine the shortest path on a network with time windows.

Variables Meaning
network Dictionary, {node1: {node2: [cost1, time1], node3: [cost2, time2] ...}, ...}
source The source node
destination The destination node
nn The number of nodes
nw The number of objectives
neighbor Dictionary, {node1: [the neighbor nodes of node1], ...}
ind The index of each label added to the priority queue
ni The index of each label that is assessed as the Pareto-optimal subpath
omega List, omega[n] contains all the indexes of labels that are assessed as the Pareto-optimal subpath from the source node to node n (Pareto-optimal labels)
obj_list List, the objective value of the each Pareto-optimal label
path_list List, the path of each Pareto-optimal label
queue The priority queue, which outputs the label that has the minimum value of the summation of objectives at each iteration

Example

The red number associated with each arc is the cost, and the green number is the transit time. The time windows associated with each node are listed in the right.

if __name__ == '__main__':
    test_network = {
        0: {1: [62, 50], 2: [44, 90], 3: [67, 10]},
        1: {0: [62, 50], 2: [33, 25], 4: [52, 90]},
        2: {0: [44, 90], 1: [33, 25], 3: [32, 10], 4: [52, 40]},
        3: {0: [67, 10], 2: [32, 10], 4: [54, 100]},
        4: {1: [52, 90], 2: [52, 40], 3: [54, 100]},
    }
    tw = {0: [0, 1e6], 1: [68, 131], 2: [77, 89], 3: [70, 79], 4: [39, 125]}
    source_node = 0
    destination_node = 4
    print(main(test_network, source_node, destination_node, tw))
Output:
{
    'cost': 151, 
    'time': 120, 
    'path': [0, 3, 2, 4],
}

the-labeling-algorithm-for-the-shortest-path-problem-with-time-windows's People

Contributors

xavier-mayiming avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.