| 124 | } |
| 125 | |
| 126 | void fixedColumnTest(Highs& highs) { |
| 127 | HighsModel model; |
| 128 | HighsLp& lp = model.lp_; |
| 129 | lp = distillationLp(); |
| 130 | double x0_fixed = 1; |
| 131 | if (dev_run) printf("\nFix column 0 of distillation to be %g\n", x0_fixed); |
| 132 | lp.col_lower_[0] = x0_fixed; |
| 133 | lp.col_upper_[0] = x0_fixed; |
| 134 | highs.passModel(model); |
| 135 | dualizeTest(highs); |
| 136 | highs.clear(); |
| 137 | } |
| 138 | |
| 139 | void colUpperBoundTest(Highs& highs) { |
| 140 | HighsModel model; |
nothing calls this directly
no test coverage detected