You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message << " OPTIMIZATION SUCCESS! \n The global minimum (with respect to the precision required) has been found. In particular, at least one feasible point has been found, less than obj_init_bound, and in the time limit." ;
147
+
case Optimizer::SUCCESS: {
148
+
message << " OPTIMIZATION SUCCESS! \n"
149
+
<< "The global minimum has been found, with respect to \n"
150
+
<< "the precision required. In particular, at least \n"
151
+
<< "one feasible point has been found, less than \"init_obj_value\", \n"
152
+
<< "and in the time limit.\n" ;
149
153
solve_result_num=0;
154
+
155
+
std::string tmp = message.str();
156
+
Vector sol = o.get_loup_point().mid();
157
+
write_sol(tmp.c_str(), sol.raw(), NULL, NULL);
150
158
break;
151
-
case Optimizer::INFEASIBLE:
152
-
message << " INFEASIBLE PROBLEM. \n No feasible point exist less than obj_init_bound. In particular, the function returns INFEASIBLE if the initial bound \"obj_init_bound\" is LESS than the true minimum (this case is only possible if obj_abs_prec and obj_rel_prec are 0). In the latter case, there may exist feasible points." ;
159
+
}
160
+
case Optimizer::INFEASIBLE:{
161
+
message << " INFEASIBLE PROBLEM. \n"
162
+
<<"No feasible point exist less than \"init_obj_value\". \n"
163
+
<<"In particular, the function returns INFEASIBLE \n"
164
+
<<"if the initial bound \"init_obj_value\" is LESS than \n"
165
+
<<"the true minimum (this case is only possible \n"
166
+
<<"if \"rel_eps_f\" and \"abs_eps_f\" are 0). \n"
167
+
<<"In the latter case, there may exist feasible points." ;
153
168
solve_result_num=200;
169
+
170
+
std::string tmp = message.str();
171
+
write_sol(tmp.c_str(), NULL, NULL, NULL);
154
172
break;
155
-
case Optimizer::NO_FEASIBLE_FOUND:
156
-
message << " NO FEASIBLE POINT FOUND. \n No feasible point could be found less than obj_init_bound. Contrary to INFEASIBLE, infeasibility is not proven here. Warning: this return value is sensitive to the abs_eps_f and rel_eps_f parameters. The upperbounding makes the optimizer only looking for points less than min{ (1-rel_eps_f)*obj_init_bound, obj_init_bound - abs_eps_f }.";
173
+
}
174
+
case Optimizer::NO_FEASIBLE_FOUND:{
175
+
message << " NO FEASIBLE POINT FOUND. \n"
176
+
<<"No feasible point could be found less than \"init_obj_value\".\n"
177
+
<<" Contrary to INFEASIBLE, infeasibility is not proven here. \n"
178
+
<<"Warning: this return value is sensitive to the \"abs_eps_f\"\n"
179
+
<<" and \"rel_eps_f\" parameters. The upper bounding makes \n"
180
+
<<" the optimizer only looking for points less than\n"
message << " UNREACHED PRECISION. \n The search is over but the resulting interval [uplo,loup] does not satisfy the precision requirements. There are several possible reasons: the goal function may be too pessimistic or the constraints function may be too pessimistic with respect to the precision requirement (which can be too stringent). This results in tiny boxes that can neither be contracted nor used as new loup candidates. Finally, the eps_x parameter may be too large." ;
206
+
}
207
+
case Optimizer::UNREACHED_PREC: {
208
+
message << " UNREACHED PRECISION. \n"
209
+
<<"The search is over but the resulting interval [uplo,loup]\n"
210
+
<<"does not satisfy the precision requirements. \n"
211
+
<<"There are several possible reasons: the objective \n"
212
+
<<"function may be too pessimistic or the constraints function\n"
213
+
<<"may be too pessimistic with respect to the precision \n"
214
+
<<"requirement (which can be too stringent). This results in \n"
215
+
<<"tiny boxes that can neither be contracted nor used as \n"
216
+
<<"new loup candidates. Finally, the \"eps_x\" parameter may be too large." ;
0 commit comments