Binary integer program solver for Java

My problem is trying to solve binary integer programs through Java I want to do a series of experiments. One part of these experiments is to solve the integer program, in which the variables are constrained between 0 and 1

In the past, I have used the function bintprog to solve these problems in MATLAB When searching for such a function (or class? I'm new to Java), I returned empty handed

Is there a Java library that can be used to solve integer programs with good documentation?

In my search, I have seen the use of a named LP_ Solve's package, which builds a Java wrapper around it and a similar wrapper for a package called GLPK (wrapper here and here) (I've used it before) The problem with these tools is that they are not strictly designed for Java, so they lack the document types I think they need, and even worse, they have complex instructions and even start using them in my own code Since I am currently learning the Java language, I would like to know if there are any very good software packages that can be used to solve binary integer programs, mixed integer linear programs or integer programs in my own java code

As a side note, I really don't want to switch to another language because I'm building past code and classes that perform the tasks I want

Solution

How about Java integer linear program solver (jilps)?

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>