| 113 | } |
| 114 | |
| 115 | void freeColumnTest(Highs& highs) { |
| 116 | HighsModel model; |
| 117 | HighsLp& lp = model.lp_; |
| 118 | lp = distillationLp(); |
| 119 | if (dev_run) printf("\nFree column 1 of distillation\n"); |
| 120 | lp.col_lower_[1] = -inf; |
| 121 | highs.passModel(model); |
| 122 | dualizeTest(highs); |
| 123 | highs.clear(); |
| 124 | } |
| 125 | |
| 126 | void fixedColumnTest(Highs& highs) { |
| 127 | HighsModel model; |
nothing calls this directly
no test coverage detected