| 414 | } |
| 415 | |
| 416 | String LPWrapper::getColumnName(Int index) |
| 417 | { |
| 418 | #if COINOR_SOLVER == 1 |
| 419 | return model_->getColumnName(index); |
| 420 | #else |
| 421 | return String(glp_get_col_name(lp_problem_, index + 1)); |
| 422 | #endif |
| 423 | } |
| 424 | |
| 425 | String LPWrapper::getRowName(Int index) |
| 426 | { |
no test coverage detected