Is there any known algorithm to find a maximum when there is a constraint on the optimizing function. i.e. I am interested to find the maximum of
cTx
under the constraint
Ax <= b
however I also request that
cTx <= α
It looks similar to the simplex algorithm but I have an additional constraint on the maximizing cost.
zand a constraintz=cTranspose*x. Append your desired constraintz <= alphato the problem and replace the original objective withmax z. Any half-resonable linear programming solver / modeling environment will support such changes to your LP problem. It is still solvable with the simplex method.