Constrained optimization for nonlinear multivariab

2019-04-22 19:51发布

I am looking for an open source implementation of a method doing constrained optimization for nonlinear multivariable function in Java.

4条回答
在下西门庆
2楼-- · 2019-04-22 20:09

You can have a look at Choco, a framework for constraint programming implemented in java.

查看更多
Juvenile、少年°
3楼-- · 2019-04-22 20:14

IPOPT is the most robust solver I know of.

It has a Java interface although I have no idea how good that is, I only use the C++ API.

查看更多
走好不送
4楼-- · 2019-04-22 20:19

There are several open source java implementations that can do this, such as:

  • OptaPlanner (apache license, 100% java, lots of examples and documentation)
  • jacop
  • choco
  • ...
查看更多
乱世女痞
5楼-- · 2019-04-22 20:27

I recently ported Michael Powells' COBYLA2 derivative-free optimizer for nonlinear objective functions and constraints to Java. You'll find the source code here.

查看更多
登录 后发表回答