coin-or / Clp

COIN-OR Linear Programming Solver
Other
408 stars 85 forks source link

Export `setRowLower` etc. in the C interface #117

Open mtanneau opened 5 years ago

mtanneau commented 5 years ago

I'm working with Clp through its Julia API, which uses Clp's C interface.

I'm trying to change the bounds on one constraint at a time, which is possible in Clp's C++ interface (see setRowLower, setRowUpper and SetRowBounds), but not in its C interface.

Only chrRowLower and chrRowUpper seem to be exported there.

Is there any technical reason for not exporting this?

Happy to PR.