mechmotum / cyipopt

Cython interface for the interior point optimzer IPOPT
Eclipse Public License 2.0
227 stars 54 forks source link

Whether integer or discrete variables are supported #252

Closed Zcaic closed 3 months ago

Zcaic commented 3 months ago

Hi, does it optimize for integer variables?

moorepants commented 3 months ago

cyipopt is a wrapper to ipopt, you can read about the problem ipopt solves here: https://coin-or.github.io/Ipopt/. I believe you need to use other tools for integer optimization.

Zcaic commented 3 months ago

Okay, thanks for the reply.