7

Is there any Java source code (or framework) to implement and solve MILP using the branch and price method?

AFAIK, jORLib is a framework to implement B&P using Java, but it does not have any clear documents or active mailing list.

fbahr
  • 1,026
  • 8
  • 16
A.Omidi
  • 8,832
  • 2
  • 13
  • 49

1 Answers1

6

I found a manual in Coin-OR Github page where they explained the implementation of the method through 3 different examples. You can find the document in this web address

Oguz Toragay
  • 8,652
  • 2
  • 13
  • 41
  • 1
    Thanks. I read it. It has some methods to implement. I have tried to use jORLib as a library and for the algorithmic package, it works fine, but for the B&P package, it needs to some specific libraries and features to implement that they don't have any clear documents. Do you (or someone) know how to do it? – A.Omidi Jun 16 '19 at 05:45
  • What exactly do you mean by 'it needs some specific libraries and features to implement'? There's nothing particular needed to implement the branch-and-price. In fact, Section 3 of the aforementioned document gives a complete working example. Moreover, implementations of these working example are also included in the repository: https://github.com/coin-or/jorlib/tree/master/jorlib-demo – Joris Kinable Jun 18 '19 at 07:46