| 274 | } |
| 275 | |
| 276 | void LPWrapper::setColumnName(Int index, const String& name) |
| 277 | { |
| 278 | #if COINOR_SOLVER == 1 |
| 279 | model_->setColumnName(index, name.c_str()); |
| 280 | #else |
| 281 | glp_set_col_name(lp_problem_, index + 1, name.c_str()); |
| 282 | #endif |
| 283 | } |
| 284 | |
| 285 | void LPWrapper::setRowName(Int index, const String& name) |
| 286 | { |
no outgoing calls
no test coverage detected