File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -112,16 +112,6 @@ HighsModelStatus HighsMipSolverData::feasibilityJump() {
112112 status.solution + status.numVars );
113113 objective_function_value =
114114 model->offset_ + sense_multiplier * status.solutionObjectiveValue ;
115- if (verbosity > 0 ) {
116- printf (" Feasibility Jump has found a solution" );
117- if (model->num_col_ < 10 ) {
118- printf (" [" );
119- for (HighsInt col = 0 ; col < std::min (10 , model->num_col_ ); ++col)
120- printf (" %g" , col_value[col]);
121- printf (" ]" );
122- }
123- printf (" with objective %g\n " , objective_function_value);
124- }
125115 }
126116 if (status.effortSinceLastImprovement > kMaxEffortSinceLastImprovement ||
127117 status.totalEffort > kMaxTotalEffort ) {
@@ -131,11 +121,6 @@ HighsModelStatus HighsMipSolverData::feasibilityJump() {
131121 }
132122 };
133123
134- if (verbosity > 0 )
135- printf (
136- " Feasibility Jump: kMaxTotalEffort = %zd; "
137- " kMaxEffortSinceLastImprovement = %zd\n " ,
138- kMaxTotalEffort , kMaxEffortSinceLastImprovement );
139124 solver.solve (col_value.data (), fjControlCallback);
140125
141126 if (found_integer_feasible_solution) {
You can’t perform that action at this time.
0 commit comments