Skip to content

Commit af7ea9f

Browse files
jnininjninin
jninin
authored and
jninin
committed
Correct the messages
1 parent 2429ae3 commit af7ea9f

File tree

4 files changed

+72
-78
lines changed

4 files changed

+72
-78
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if (NOT DEFINED ENV{ASL_DIR} AND DEFINED ASL_DIR)
5050
endif ()
5151
find_package (ASL NAMES ampl-asl QUIET)
5252
if (ASL_FOUND)
53-
message (STATUS "Found Ampl Solver Librairy (ASL)")
53+
message (STATUS "Found Ampl Solver Library (ASL)")
5454
get_property (_incdirs TARGET asl PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
5555
foreach (_incdir ${_incdirs})
5656
set_property (TARGET asl APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES

README.ibexopt

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ or, if $solver is not already ibexopt,
1212
option solver ibexopt;
1313
solve;
1414

15-
The argument -AMPL causes IbexOpt to emit a one-line banner; when
16-
$solver has its default value (ibexopt), AMPL's solve command invokes
15+
When $solver has its default value (ibexopt), AMPL's solve command invokes
1716

1817
ibexopt stub -AMPL
1918

src/bin/ibexopt.cpp

+5-58
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ int main(int argc, char** argv) {
125125
System *sys;
126126
AmplInterface *ampl;
127127

128-
cout << "IBEXOPT "<< _IBEX_RELEASE_ << " is running..."<< endl;
128+
cout << "IbexOpt "<< _IBEX_RELEASE_ << " is running..."<< endl;
129129

130130
string extension = filename.Get().substr(filename.Get().find_last_of('.')+1);
131131
if (extension == "nl" || option_ampl) {
@@ -248,7 +248,8 @@ int main(int argc, char** argv) {
248248
}
249249

250250
if (simpl_level)
251-
cout << " symbolic simpl level:\t" << simpl_level.Get() << "\t" << endl;
251+
if (!quiet)
252+
cout << " symbolic simpl level:\t" << simpl_level.Get() << "\t" << endl;
252253

253254
if (initial_loup) {
254255
initial_loup1 = initial_loup.Get();
@@ -376,63 +377,9 @@ int main(int argc, char** argv) {
376377

377378
// si l'option -AMPL est présent, ecrire le fichier .sol pour ampl
378379

379-
// cout << o.get_nb_cells() << " iterations, objective in [" << o.get_uplo() <<"," << o.get_loup() << "]" << endl;
380-
381-
Optimizer::Status status =o.get_status();
382-
switch(status) {
383-
case Optimizer::SUCCESS:
384-
cout << " optimization successful!" << std::endl;
385-
break;
386-
case Optimizer::INFEASIBLE:
387-
cout << " infeasible problem" << std::endl;
388-
break;
389-
case Optimizer::NO_FEASIBLE_FOUND:
390-
cout << " no feasible point found (the problem may be infeasible)" << std::endl;
391-
break;
392-
case Optimizer::UNBOUNDED_OBJ:
393-
cout << " possibly unbounded objective (f*=-oo)" << std::endl;
394-
break;
395-
case Optimizer::TIME_OUT:
396-
cout << " time limit " << o.timeout << "s. reached" << std::endl;
397-
break;
398-
case Optimizer::UNREACHED_PREC:
399-
cout << " unreached precision" << std::endl;
400-
break;
401-
}
402-
// No solution found and optimization stopped with empty buffer
403-
// before the required precision is reached => means infeasible problem
404-
if (status==Optimizer::INFEASIBLE) {
405-
cout << " infeasible problem\n ";
406-
} else {
407-
double loup = o.get_loup();
408-
cout << "f* in [" << o.get_uplo() <<"," << loup << "]" << std::endl;
409-
cout << "(best bound)" << std::endl;
410-
411-
double rel_prec=o.get_obj_rel_prec();
412-
double abs_prec=o.get_obj_abs_prec();
413-
414-
cout << " relative precision on f*:\t" << rel_prec;
415-
if (rel_prec <= o.rel_eps_f)
416-
cout << " [passed] ";
417-
cout << std::endl;
418-
419-
cout << " absolute precision on f*:\t" << abs_prec;
420-
if (abs_prec <= o.abs_eps_f)
421-
cout << " [passed] " ;
422-
cout << std::endl;
423-
}
424-
425-
cout << " cpu time used:\t\t\t" << o.get_time() << "s";
426-
if (o.get_data().time()!=o.get_time())
427-
cout << " [total=" << o.get_data().time() << "]";
428-
cout << std::endl;
429-
cout << " number of cells:\t\t" << o.get_nb_cells();
430-
if (o.get_data().nb_cells()!=o.get_nb_cells())
431-
cout << " [total=" << o.get_data().nb_cells() << "]";
432-
cout << std::endl;
433-
434-
380+
o.report();
435381
ampl->writeSolution(o);
382+
436383
if (ampl) {
437384
delete ampl;
438385
}

src/system/ibex_AmplInterface.cpp

+65-17
Original file line numberDiff line numberDiff line change
@@ -144,36 +144,84 @@ bool AmplInterface::writeSolution(Optimizer& o) {
144144
message << "IbexOpt "<< _IBEX_RELEASE_ << " finish : ";
145145
Optimizer::Status status =o.get_status();
146146
switch(status) {
147-
case Optimizer::SUCCESS:
148-
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" ;
149153
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);
150158
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." ;
153168
solve_result_num=200;
169+
170+
std::string tmp = message.str();
171+
write_sol(tmp.c_str(), NULL, NULL, NULL);
154172
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"
181+
<<" min{ (1-rel_eps_f)*init_obj_value, init_obj_value - abs_eps_f }.";
157182
solve_result_num=201;
183+
184+
std::string tmp = message.str();
185+
write_sol(tmp.c_str(), NULL, NULL, NULL);
158186
break;
159-
case Optimizer::UNBOUNDED_OBJ:
160-
message << " UNBOUNDED OBJECTIVE FONCTION. \n The objective function seems unbounded (tends to -oo).";
187+
}
188+
case Optimizer::UNBOUNDED_OBJ:{
189+
message << " UNBOUNDED OBJECTIVE FONCTION. \n "
190+
<<"The objective function seems unbounded (tends to -oo).";
161191
solve_result_num=300;
192+
193+
std::string tmp = message.str();
194+
Vector sol = o.get_loup_point().mid();
195+
write_sol(tmp.c_str(), sol.raw(), NULL, NULL);
162196
break;
163-
case Optimizer::TIME_OUT:
197+
}
198+
case Optimizer::TIME_OUT:{
164199
message << " time limit " << o.timeout << "s. reached";
165200
solve_result_num=400;
201+
202+
std::string tmp = message.str();
203+
Vector sol = o.get_loup_point().mid();
204+
write_sol(tmp.c_str(), sol.raw(), NULL, NULL);
166205
break;
167-
case Optimizer::UNREACHED_PREC:
168-
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." ;
169217
solve_result_num=402;
218+
219+
std::string tmp = message.str();
220+
Vector sol = o.get_loup_point().mid();
221+
write_sol(tmp.c_str(), sol.raw(), NULL, NULL);
170222
break;
171223
}
172-
173-
std::string tmp = message.str();
174-
Vector sol = o.get_loup_point().mid();
175-
write_sol(tmp.c_str(), sol.raw(), NULL, NULL);
176-
224+
}
177225
return true;
178226
}
179227

@@ -282,7 +330,7 @@ bool AmplInterface::readnl() {
282330

283331
// the variable /////////////////////////////////////////////////////////////
284332
// TODO only continuous variables for the moment
285-
// TODO get the x0 (see ((expr_v *) e) -> v )
333+
// TODO get the x0 : see ((expr_v *) e) -> v , havex0 and X0
286334

287335
_x= new const ExprSymbol*[n_var];
288336
for (int i =0; i< n_var; i++) {

0 commit comments

Comments
 (0)