I'm using ortools to solve a Mixed-integer-problem, using SCIP as the solver.
And the solver.EnableOutput() is preformed, and the following output is displayed on my screen↓
(round 236, fast) 878 del vars, 1832 del conss, 0 add conss, 1235 chg bounds, 138 chg sides, 238 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 237, fast) 878 del vars, 1832 del conss, 0 add conss, 1235 chg bounds, 139 chg sides, 238 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 238, fast) 879 del vars, 1833 del conss, 0 add conss, 1235 chg bounds, 139 chg sides, 238 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 239, exhaustive) 879 del vars, 1833 del conss, 0 add conss, 1235 chg bounds, 139 chg sides, 241 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 240, fast) 879 del vars, 1834 del conss, 0 add conss, 1236 chg bounds, 139 chg sides, 241 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 241, fast) 881 del vars, 1835 del conss, 0 add conss, 1236 chg bounds, 139 chg sides, 241 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
(round 242, fast) 882 del vars, 1837 del conss, 0 add conss, 1236 chg bounds, 139 chg sides, 241 chg coeffs, 0 upgd conss, 0 impls, 0 clqs
Deactivated symmetry handling methods, since SCIP was built without symmetry detector (SYM=none).
presolving (243 rounds: 243 fast, 53 medium, 53 exhaustive):
883 deleted vars, 1837 deleted constraints, 0 added constraints, 1236 tightened bounds, 0 added holes, 139 changed sides, 241 changed coefficients
0 implications, 0 cliques
And then python get stuck, no further print or any other display.
Normally, the following output would be shown after * implications, * cliques
presolved problem has 115 variables (4 bin, 0 int, 0 impl, 111 cont) and 114 constraints
2 constraints of type <varbound>
112 constraints of type <linear>
Presolving Time: 0.00
time | node | left |LP iter|LP it/n|mem/heur|mdpt |vars |cons |rows |cuts |sepa|confs|strbr| dualbound | primalbound | gap | compl.
p 0.0s| 1 | 0 | 5 | - | locks| 0 | 115 | 114 | 114 | 0 | 0 | 0 | 0 |-3.686091e+03 |-1.600361e+04 | 334.16%| unknown
* 0.0s| 1 | 0 | 6 | - | LP | 0 | 115 | 114 | 114 | 0 | 0 | 0 | 0 |-8.756871e+03 |-8.756871e+03 | 0.00%| unknown
0.0s| 1 | 0 | 6 | - | 5577k | 0 | 115 | 114 | 114 | 0 | 0 | 0 | 0 |-8.756871e+03 |-8.756871e+03 | 0.00%| unknown after
So, is the problem due to the ortools solver? Or is just the problem of the input data reallyyyyyyy costs tons of time?