Originally posted by: SystemAdmin
I am solving a mixed integer optimization problem with both equality and inequality constraints, i.e. I have Aeq*x=beq and Aineq*x<=bineq as constraints. I want to use Cplex.Model() to set up the problem. Cplex.Model() has a single constraint matrix input parameter A. How do I include both equality and inequality constraints in this matrix and how do I specify whether a particular row is an equality or inequality constraint?
#CPLEXOptimizers#DecisionOptimization