List of Implementations for common OR problemsSolving ATSP problem for large-scale problemOpen source Markov decision process solversBenchmark problems for scenario-based stochastic optimizationJava source code for branch and priceSupply Chain Public Data RepositoryAlgorithmic gap for Hochbaum's (greedy) algorithm for (metric) uncapacitated facility locationQA techniques for optimization problem codingMathematically creating the 'perfect' permutation for reservations in a hostelMany-to-many Breadth First SearchCapacitated VRP-TW: Gehring & Homberger instances

Why did people still chant "Lock her up" at Trump rallies in 2019?

How can a dictatorship government be beneficial to a dictator in a post-scarcity society?

[Future]Historical experience as a guide to warship design?

Why does the Antonov AN-225 not have any winglets?

What are some further readings in Econometrics you recommend?

How effective would wooden scale armor be in a medieval setting?

Misspelling my name on my mathematical publications

Reverse dots and boxes

What do three diagonal dots above a letter mean in the "Misal rico de Cisneros" (Spain, 1518)?

How quality assurance engineers test calculations?

Did the Ottoman empire suppress the printing press?

Is "I do not want you to go nowhere" a case of "DOUBLE-NEGATIVES" as claimed by Grammarly?

How to tell someone I'd like to become friends without letting them think I'm romantically interested in them?

The three greedy pirates

Chorophyll and photosynthesis in plants with coloured leaves

Should I include code in my research paper?

Addressing unnecessary daily meetings with manager?

Misrepresented my work history

Why did Harry Potter get a bedroom?

Yet another hash table in C

The joke office

Why weren't bootable game disks ever a thing on the IBM PC?

OR-backed serious games

LMOP: what beasts live in Neverwinter Wood?



List of Implementations for common OR problems


Solving ATSP problem for large-scale problemOpen source Markov decision process solversBenchmark problems for scenario-based stochastic optimizationJava source code for branch and priceSupply Chain Public Data RepositoryAlgorithmic gap for Hochbaum's (greedy) algorithm for (metric) uncapacitated facility locationQA techniques for optimization problem codingMathematically creating the 'perfect' permutation for reservations in a hostelMany-to-many Breadth First SearchCapacitated VRP-TW: Gehring & Homberger instances













12












$begingroup$


For the TSP there famously is the concord solver (http://www.math.uwaterloo.ca/tsp/concorde.html) which is argubly the fastest exact solver for the TSP.



There are many other problems that also show up again and again, for example the capacitated vehicle routing problem (CVRP). CVRP can be solved very efficiently using branch and price, and there are many papers, on the fastest current methodes and how they can incorporate different constraints (e.g. time windows). However, i was unable to find any available implementation.



So I wonder, are there some good implementations of the state of the art for other problems than the TSP? Is there a list of such implementations and if not, can we create one?










share|improve this question











$endgroup$







  • 1




    $begingroup$
    I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
    $endgroup$
    – Luke599999
    Jul 1 at 8:15






  • 1




    $begingroup$
    including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
    $endgroup$
    – Michael Feldmeier
    Jul 1 at 15:21






  • 1




    $begingroup$
    @MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
    $endgroup$
    – Luke599999
    Jul 2 at 12:17















12












$begingroup$


For the TSP there famously is the concord solver (http://www.math.uwaterloo.ca/tsp/concorde.html) which is argubly the fastest exact solver for the TSP.



There are many other problems that also show up again and again, for example the capacitated vehicle routing problem (CVRP). CVRP can be solved very efficiently using branch and price, and there are many papers, on the fastest current methodes and how they can incorporate different constraints (e.g. time windows). However, i was unable to find any available implementation.



So I wonder, are there some good implementations of the state of the art for other problems than the TSP? Is there a list of such implementations and if not, can we create one?










share|improve this question











$endgroup$







  • 1




    $begingroup$
    I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
    $endgroup$
    – Luke599999
    Jul 1 at 8:15






  • 1




    $begingroup$
    including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
    $endgroup$
    – Michael Feldmeier
    Jul 1 at 15:21






  • 1




    $begingroup$
    @MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
    $endgroup$
    – Luke599999
    Jul 2 at 12:17













12












12








12


2



$begingroup$


For the TSP there famously is the concord solver (http://www.math.uwaterloo.ca/tsp/concorde.html) which is argubly the fastest exact solver for the TSP.



There are many other problems that also show up again and again, for example the capacitated vehicle routing problem (CVRP). CVRP can be solved very efficiently using branch and price, and there are many papers, on the fastest current methodes and how they can incorporate different constraints (e.g. time windows). However, i was unable to find any available implementation.



So I wonder, are there some good implementations of the state of the art for other problems than the TSP? Is there a list of such implementations and if not, can we create one?










share|improve this question











$endgroup$




For the TSP there famously is the concord solver (http://www.math.uwaterloo.ca/tsp/concorde.html) which is argubly the fastest exact solver for the TSP.



There are many other problems that also show up again and again, for example the capacitated vehicle routing problem (CVRP). CVRP can be solved very efficiently using branch and price, and there are many papers, on the fastest current methodes and how they can incorporate different constraints (e.g. time windows). However, i was unable to find any available implementation.



So I wonder, are there some good implementations of the state of the art for other problems than the TSP? Is there a list of such implementations and if not, can we create one?







algorithms online-resources software vehicle-routing implementation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 3 at 9:14









TheSimpliFire

9093 silver badges25 bronze badges




9093 silver badges25 bronze badges










asked Jul 1 at 8:11









Luke599999Luke599999

11111 bronze badges




11111 bronze badges







  • 1




    $begingroup$
    I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
    $endgroup$
    – Luke599999
    Jul 1 at 8:15






  • 1




    $begingroup$
    including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
    $endgroup$
    – Michael Feldmeier
    Jul 1 at 15:21






  • 1




    $begingroup$
    @MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
    $endgroup$
    – Luke599999
    Jul 2 at 12:17












  • 1




    $begingroup$
    I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
    $endgroup$
    – Luke599999
    Jul 1 at 8:15






  • 1




    $begingroup$
    including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
    $endgroup$
    – Michael Feldmeier
    Jul 1 at 15:21






  • 1




    $begingroup$
    @MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
    $endgroup$
    – Luke599999
    Jul 2 at 12:17







1




1




$begingroup$
I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
$endgroup$
– Luke599999
Jul 1 at 8:15




$begingroup$
I saw the "Why is the programming code of many algorithms not public in the OR community?" and i think, this is not about sharing the code, but rather the executables.
$endgroup$
– Luke599999
Jul 1 at 8:15




1




1




$begingroup$
including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
$endgroup$
– Michael Feldmeier
Jul 1 at 15:21




$begingroup$
including heuristic, metaheuristic, and approximation approaches? or just implementations that are guaranteed to solve the problem globally?
$endgroup$
– Michael Feldmeier
Jul 1 at 15:21




1




1




$begingroup$
@MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
$endgroup$
– Luke599999
Jul 2 at 12:17




$begingroup$
@MichaelFeldmeier I was originally mostly interested in optimal solutions, but i think state of the art can certainly include approximation and (meta-)heuristic approches.
$endgroup$
– Luke599999
Jul 2 at 12:17










5 Answers
5






active

oldest

votes


















9












$begingroup$

Let's make an inventory of example code for each common OR problem?




  • Vehicle Routing Problem



    • Jsprit: many rich problem types. source code - company website. (Desktop-based open source application built around it ODL Studio).

    • OptaPlanner: explanation + video's - source code (capacitated, time windows, multiple depots)

    • LocalSolver: explanation + source code (same with time windows)


    • OR-tools: explanation + source code


    • COIN-OR tools: TODO

    • OscaR: TODO



  • Nurse Rostering problem

    • OptaPlanner: explanation + video's - source code



  • Conference Scheduling

    • OptaPlanner: explanation + video's - source code



  • Course Scheduling

    • OptaPlanner: source code



  • Exam Scheduling

    • OptaPlanner: source code



  • Job Shop scheduling

    • OptaPlanner: source code of variant

    • LocalSolver: explanation + source code



  • Knapsack

    • LocalSolver: explanation + source code

    • OR-Tools: explanation + source code



  • Assembly Line Balancing Problem

    • SALOME Branch & Bound Algorithm:explanation + source code

    • Branch & Bound & Remember Algorithm: explanation + source code



  • P-median site location

    • Territorium: source code, UI. Does capacitated clustering for both min and max quantity range using heuristics.


I've made this post a wiki: please add common OR problems and/or implementations.






share|improve this answer











$endgroup$








  • 2




    $begingroup$
    given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
    $endgroup$
    – Michael Feldmeier
    Jul 2 at 13:43


















10












$begingroup$

A good place to start is COIN-OR, which aims to "create for mathematical software what the open literature is for mathematical theory".



You can also take a look at Google's OR-Tools. It contains many algorithms for specific problems (like knapsack or max flow) and also generic LP and CP solvers.






share|improve this answer









$endgroup$








  • 1




    $begingroup$
    FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
    $endgroup$
    – Simon
    Jul 1 at 11:46










  • $begingroup$
    @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
    $endgroup$
    – Geoffrey De Smet
    Jul 1 at 21:13











  • $begingroup$
    @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
    $endgroup$
    – mrBen
    Jul 2 at 8:13



















10












$begingroup$

I would, for everything knapsack-like, always go to David Pisingers homepage. Here you can find very efficient codes for knapsack problems (COMBO), multiple-choice knapsack problems (Mcknap), and quadratick knapsack problems (quadknap) among others.



I don't know if it qualifies as a "common OR problem" but for linear vector optimization (and therefore also linear multi-objective optimization) there is the BENSOLVE solver.






share|improve this answer











$endgroup$




















    3












    $begingroup$

    For assembly line balancing problem, test problems, codes for several versions of problem and useful resources can be found at https://assembly-line-balancing.de.






    share|improve this answer








    New contributor



    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





    $endgroup$




















      2












      $begingroup$

      I am sorry to advertise our own VRP solver, but may be it is what you are looking for:



      https://vrpsolver.math.u-bordeaux.fr/



      For knapsack, Pisinger's code is the best (mentioned above), however integer knapsack code there has a bug. I only use 0-1 knapsack code, it is reliable.



      For bin packing, this nice paper has links to several available solvers: https://doi.org/10.1016/j.ejor.2016.04.030



      For (weighted) maximum clique (minimum stable set), Ostergard's code is very good: https://users.aalto.fi/~pat/cliquer.html



      Although, it may not be state-of-the-art anymore.






      share|improve this answer








      New contributor



      Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      $endgroup$















        Your Answer








        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "700"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        noCode: true, onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2for.stackexchange.com%2fquestions%2f841%2flist-of-implementations-for-common-or-problems%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        5 Answers
        5






        active

        oldest

        votes








        5 Answers
        5






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        9












        $begingroup$

        Let's make an inventory of example code for each common OR problem?




        • Vehicle Routing Problem



          • Jsprit: many rich problem types. source code - company website. (Desktop-based open source application built around it ODL Studio).

          • OptaPlanner: explanation + video's - source code (capacitated, time windows, multiple depots)

          • LocalSolver: explanation + source code (same with time windows)


          • OR-tools: explanation + source code


          • COIN-OR tools: TODO

          • OscaR: TODO



        • Nurse Rostering problem

          • OptaPlanner: explanation + video's - source code



        • Conference Scheduling

          • OptaPlanner: explanation + video's - source code



        • Course Scheduling

          • OptaPlanner: source code



        • Exam Scheduling

          • OptaPlanner: source code



        • Job Shop scheduling

          • OptaPlanner: source code of variant

          • LocalSolver: explanation + source code



        • Knapsack

          • LocalSolver: explanation + source code

          • OR-Tools: explanation + source code



        • Assembly Line Balancing Problem

          • SALOME Branch & Bound Algorithm:explanation + source code

          • Branch & Bound & Remember Algorithm: explanation + source code



        • P-median site location

          • Territorium: source code, UI. Does capacitated clustering for both min and max quantity range using heuristics.


        I've made this post a wiki: please add common OR problems and/or implementations.






        share|improve this answer











        $endgroup$








        • 2




          $begingroup$
          given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
          $endgroup$
          – Michael Feldmeier
          Jul 2 at 13:43















        9












        $begingroup$

        Let's make an inventory of example code for each common OR problem?




        • Vehicle Routing Problem



          • Jsprit: many rich problem types. source code - company website. (Desktop-based open source application built around it ODL Studio).

          • OptaPlanner: explanation + video's - source code (capacitated, time windows, multiple depots)

          • LocalSolver: explanation + source code (same with time windows)


          • OR-tools: explanation + source code


          • COIN-OR tools: TODO

          • OscaR: TODO



        • Nurse Rostering problem

          • OptaPlanner: explanation + video's - source code



        • Conference Scheduling

          • OptaPlanner: explanation + video's - source code



        • Course Scheduling

          • OptaPlanner: source code



        • Exam Scheduling

          • OptaPlanner: source code



        • Job Shop scheduling

          • OptaPlanner: source code of variant

          • LocalSolver: explanation + source code



        • Knapsack

          • LocalSolver: explanation + source code

          • OR-Tools: explanation + source code



        • Assembly Line Balancing Problem

          • SALOME Branch & Bound Algorithm:explanation + source code

          • Branch & Bound & Remember Algorithm: explanation + source code



        • P-median site location

          • Territorium: source code, UI. Does capacitated clustering for both min and max quantity range using heuristics.


        I've made this post a wiki: please add common OR problems and/or implementations.






        share|improve this answer











        $endgroup$








        • 2




          $begingroup$
          given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
          $endgroup$
          – Michael Feldmeier
          Jul 2 at 13:43













        9












        9








        9





        $begingroup$

        Let's make an inventory of example code for each common OR problem?




        • Vehicle Routing Problem



          • Jsprit: many rich problem types. source code - company website. (Desktop-based open source application built around it ODL Studio).

          • OptaPlanner: explanation + video's - source code (capacitated, time windows, multiple depots)

          • LocalSolver: explanation + source code (same with time windows)


          • OR-tools: explanation + source code


          • COIN-OR tools: TODO

          • OscaR: TODO



        • Nurse Rostering problem

          • OptaPlanner: explanation + video's - source code



        • Conference Scheduling

          • OptaPlanner: explanation + video's - source code



        • Course Scheduling

          • OptaPlanner: source code



        • Exam Scheduling

          • OptaPlanner: source code



        • Job Shop scheduling

          • OptaPlanner: source code of variant

          • LocalSolver: explanation + source code



        • Knapsack

          • LocalSolver: explanation + source code

          • OR-Tools: explanation + source code



        • Assembly Line Balancing Problem

          • SALOME Branch & Bound Algorithm:explanation + source code

          • Branch & Bound & Remember Algorithm: explanation + source code



        • P-median site location

          • Territorium: source code, UI. Does capacitated clustering for both min and max quantity range using heuristics.


        I've made this post a wiki: please add common OR problems and/or implementations.






        share|improve this answer











        $endgroup$



        Let's make an inventory of example code for each common OR problem?




        • Vehicle Routing Problem



          • Jsprit: many rich problem types. source code - company website. (Desktop-based open source application built around it ODL Studio).

          • OptaPlanner: explanation + video's - source code (capacitated, time windows, multiple depots)

          • LocalSolver: explanation + source code (same with time windows)


          • OR-tools: explanation + source code


          • COIN-OR tools: TODO

          • OscaR: TODO



        • Nurse Rostering problem

          • OptaPlanner: explanation + video's - source code



        • Conference Scheduling

          • OptaPlanner: explanation + video's - source code



        • Course Scheduling

          • OptaPlanner: source code



        • Exam Scheduling

          • OptaPlanner: source code



        • Job Shop scheduling

          • OptaPlanner: source code of variant

          • LocalSolver: explanation + source code



        • Knapsack

          • LocalSolver: explanation + source code

          • OR-Tools: explanation + source code



        • Assembly Line Balancing Problem

          • SALOME Branch & Bound Algorithm:explanation + source code

          • Branch & Bound & Remember Algorithm: explanation + source code



        • P-median site location

          • Territorium: source code, UI. Does capacitated clustering for both min and max quantity range using heuristics.


        I've made this post a wiki: please add common OR problems and/or implementations.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 1 hour ago


























        community wiki





        9 revs, 4 users 49%
        Geoffrey De Smet








        • 2




          $begingroup$
          given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
          $endgroup$
          – Michael Feldmeier
          Jul 2 at 13:43












        • 2




          $begingroup$
          given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
          $endgroup$
          – Michael Feldmeier
          Jul 2 at 13:43







        2




        2




        $begingroup$
        given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
        $endgroup$
        – Michael Feldmeier
        Jul 2 at 13:43




        $begingroup$
        given the diverse nature of solution algorithms, I suggest adding a short hint to each link (metaheuristic, heuristic, approximation, global)
        $endgroup$
        – Michael Feldmeier
        Jul 2 at 13:43











        10












        $begingroup$

        A good place to start is COIN-OR, which aims to "create for mathematical software what the open literature is for mathematical theory".



        You can also take a look at Google's OR-Tools. It contains many algorithms for specific problems (like knapsack or max flow) and also generic LP and CP solvers.






        share|improve this answer









        $endgroup$








        • 1




          $begingroup$
          FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
          $endgroup$
          – Simon
          Jul 1 at 11:46










        • $begingroup$
          @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
          $endgroup$
          – Geoffrey De Smet
          Jul 1 at 21:13











        • $begingroup$
          @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
          $endgroup$
          – mrBen
          Jul 2 at 8:13
















        10












        $begingroup$

        A good place to start is COIN-OR, which aims to "create for mathematical software what the open literature is for mathematical theory".



        You can also take a look at Google's OR-Tools. It contains many algorithms for specific problems (like knapsack or max flow) and also generic LP and CP solvers.






        share|improve this answer









        $endgroup$








        • 1




          $begingroup$
          FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
          $endgroup$
          – Simon
          Jul 1 at 11:46










        • $begingroup$
          @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
          $endgroup$
          – Geoffrey De Smet
          Jul 1 at 21:13











        • $begingroup$
          @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
          $endgroup$
          – mrBen
          Jul 2 at 8:13














        10












        10








        10





        $begingroup$

        A good place to start is COIN-OR, which aims to "create for mathematical software what the open literature is for mathematical theory".



        You can also take a look at Google's OR-Tools. It contains many algorithms for specific problems (like knapsack or max flow) and also generic LP and CP solvers.






        share|improve this answer









        $endgroup$



        A good place to start is COIN-OR, which aims to "create for mathematical software what the open literature is for mathematical theory".



        You can also take a look at Google's OR-Tools. It contains many algorithms for specific problems (like knapsack or max flow) and also generic LP and CP solvers.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 1 at 8:50









        mrBenmrBen

        1817 bronze badges




        1817 bronze badges







        • 1




          $begingroup$
          FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
          $endgroup$
          – Simon
          Jul 1 at 11:46










        • $begingroup$
          @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
          $endgroup$
          – Geoffrey De Smet
          Jul 1 at 21:13











        • $begingroup$
          @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
          $endgroup$
          – mrBen
          Jul 2 at 8:13













        • 1




          $begingroup$
          FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
          $endgroup$
          – Simon
          Jul 1 at 11:46










        • $begingroup$
          @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
          $endgroup$
          – Geoffrey De Smet
          Jul 1 at 21:13











        • $begingroup$
          @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
          $endgroup$
          – mrBen
          Jul 2 at 8:13








        1




        1




        $begingroup$
        FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
        $endgroup$
        – Simon
        Jul 1 at 11:46




        $begingroup$
        FYI: In an evaluation that two of my students did, LocalSolver performed better at CVRPs than Google's OR-Tools.
        $endgroup$
        – Simon
        Jul 1 at 11:46












        $begingroup$
        @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
        $endgroup$
        – Geoffrey De Smet
        Jul 1 at 21:13





        $begingroup$
        @Simon Any chance you could have them benchmark OptaPlanner too (with Nearby Selection and Multithreaded Incremental Solving turned on). A big customer stated that it also beat Google OR tools (and 2 other vendors) significantly on their big VRPTW's. YMMV, of course.
        $endgroup$
        – Geoffrey De Smet
        Jul 1 at 21:13













        $begingroup$
        @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
        $endgroup$
        – mrBen
        Jul 2 at 8:13





        $begingroup$
        @Simon, By "implementation" I've understood "with source code available". But you're right, LocalSolver perform well on many kind of problems, in particular VRPs.
        $endgroup$
        – mrBen
        Jul 2 at 8:13












        10












        $begingroup$

        I would, for everything knapsack-like, always go to David Pisingers homepage. Here you can find very efficient codes for knapsack problems (COMBO), multiple-choice knapsack problems (Mcknap), and quadratick knapsack problems (quadknap) among others.



        I don't know if it qualifies as a "common OR problem" but for linear vector optimization (and therefore also linear multi-objective optimization) there is the BENSOLVE solver.






        share|improve this answer











        $endgroup$

















          10












          $begingroup$

          I would, for everything knapsack-like, always go to David Pisingers homepage. Here you can find very efficient codes for knapsack problems (COMBO), multiple-choice knapsack problems (Mcknap), and quadratick knapsack problems (quadknap) among others.



          I don't know if it qualifies as a "common OR problem" but for linear vector optimization (and therefore also linear multi-objective optimization) there is the BENSOLVE solver.






          share|improve this answer











          $endgroup$















            10












            10








            10





            $begingroup$

            I would, for everything knapsack-like, always go to David Pisingers homepage. Here you can find very efficient codes for knapsack problems (COMBO), multiple-choice knapsack problems (Mcknap), and quadratick knapsack problems (quadknap) among others.



            I don't know if it qualifies as a "common OR problem" but for linear vector optimization (and therefore also linear multi-objective optimization) there is the BENSOLVE solver.






            share|improve this answer











            $endgroup$



            I would, for everything knapsack-like, always go to David Pisingers homepage. Here you can find very efficient codes for knapsack problems (COMBO), multiple-choice knapsack problems (Mcknap), and quadratick knapsack problems (quadknap) among others.



            I don't know if it qualifies as a "common OR problem" but for linear vector optimization (and therefore also linear multi-objective optimization) there is the BENSOLVE solver.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jul 2 at 11:30

























            answered Jul 1 at 12:16









            SuneSune

            7354 silver badges10 bronze badges




            7354 silver badges10 bronze badges





















                3












                $begingroup$

                For assembly line balancing problem, test problems, codes for several versions of problem and useful resources can be found at https://assembly-line-balancing.de.






                share|improve this answer








                New contributor



                kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                $endgroup$

















                  3












                  $begingroup$

                  For assembly line balancing problem, test problems, codes for several versions of problem and useful resources can be found at https://assembly-line-balancing.de.






                  share|improve this answer








                  New contributor



                  kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  $endgroup$















                    3












                    3








                    3





                    $begingroup$

                    For assembly line balancing problem, test problems, codes for several versions of problem and useful resources can be found at https://assembly-line-balancing.de.






                    share|improve this answer








                    New contributor



                    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.





                    $endgroup$



                    For assembly line balancing problem, test problems, codes for several versions of problem and useful resources can be found at https://assembly-line-balancing.de.







                    share|improve this answer








                    New contributor



                    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.








                    share|improve this answer



                    share|improve this answer






                    New contributor



                    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.








                    answered Jul 3 at 8:00









                    kur agkur ag

                    1314 bronze badges




                    1314 bronze badges




                    New contributor



                    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.




                    New contributor




                    kur ag is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.























                        2












                        $begingroup$

                        I am sorry to advertise our own VRP solver, but may be it is what you are looking for:



                        https://vrpsolver.math.u-bordeaux.fr/



                        For knapsack, Pisinger's code is the best (mentioned above), however integer knapsack code there has a bug. I only use 0-1 knapsack code, it is reliable.



                        For bin packing, this nice paper has links to several available solvers: https://doi.org/10.1016/j.ejor.2016.04.030



                        For (weighted) maximum clique (minimum stable set), Ostergard's code is very good: https://users.aalto.fi/~pat/cliquer.html



                        Although, it may not be state-of-the-art anymore.






                        share|improve this answer








                        New contributor



                        Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.





                        $endgroup$

















                          2












                          $begingroup$

                          I am sorry to advertise our own VRP solver, but may be it is what you are looking for:



                          https://vrpsolver.math.u-bordeaux.fr/



                          For knapsack, Pisinger's code is the best (mentioned above), however integer knapsack code there has a bug. I only use 0-1 knapsack code, it is reliable.



                          For bin packing, this nice paper has links to several available solvers: https://doi.org/10.1016/j.ejor.2016.04.030



                          For (weighted) maximum clique (minimum stable set), Ostergard's code is very good: https://users.aalto.fi/~pat/cliquer.html



                          Although, it may not be state-of-the-art anymore.






                          share|improve this answer








                          New contributor



                          Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          $endgroup$















                            2












                            2








                            2





                            $begingroup$

                            I am sorry to advertise our own VRP solver, but may be it is what you are looking for:



                            https://vrpsolver.math.u-bordeaux.fr/



                            For knapsack, Pisinger's code is the best (mentioned above), however integer knapsack code there has a bug. I only use 0-1 knapsack code, it is reliable.



                            For bin packing, this nice paper has links to several available solvers: https://doi.org/10.1016/j.ejor.2016.04.030



                            For (weighted) maximum clique (minimum stable set), Ostergard's code is very good: https://users.aalto.fi/~pat/cliquer.html



                            Although, it may not be state-of-the-art anymore.






                            share|improve this answer








                            New contributor



                            Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            $endgroup$



                            I am sorry to advertise our own VRP solver, but may be it is what you are looking for:



                            https://vrpsolver.math.u-bordeaux.fr/



                            For knapsack, Pisinger's code is the best (mentioned above), however integer knapsack code there has a bug. I only use 0-1 knapsack code, it is reliable.



                            For bin packing, this nice paper has links to several available solvers: https://doi.org/10.1016/j.ejor.2016.04.030



                            For (weighted) maximum clique (minimum stable set), Ostergard's code is very good: https://users.aalto.fi/~pat/cliquer.html



                            Although, it may not be state-of-the-art anymore.







                            share|improve this answer








                            New contributor



                            Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.








                            share|improve this answer



                            share|improve this answer






                            New contributor



                            Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.








                            answered 17 hours ago









                            Ruslan SadykovRuslan Sadykov

                            211 bronze badge




                            211 bronze badge




                            New contributor



                            Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.




                            New contributor




                            Ruslan Sadykov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Operations Research Stack Exchange!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                Use MathJax to format equations. MathJax reference.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2for.stackexchange.com%2fquestions%2f841%2flist-of-implementations-for-common-or-problems%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                                Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                                Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form