Changeset 1734 for stable/2.7/Cbc
- Timestamp:
- Sep 25, 2011 11:56:05 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/2.7/Cbc/src/CbcSolver.cpp
r1706 r1734 61 61 #define GLP_NOFEAS 4 62 62 #define GLP_OPT 5 63 #endif 64 65 #ifndef CBC_QUIET 66 #define CBC_QUIET 0 63 67 #endif 64 68 … … 1212 1216 // register signal handler 1213 1217 //CoinSighandler_t saveSignal=signal(SIGINT,signal_handler); 1214 #if ndef CBC_QUIET1218 #if CBC_QUIET < 2 1215 1219 signal(SIGINT, signal_handler); 1216 1220 #endif … … 1649 1653 } 1650 1654 std::string field; 1651 #if ndef CBC_QUIET1655 #if CBC_QUIET == 0 1652 1656 if (!noPrinting_) { 1653 1657 sprintf(generalPrint, … … 2725 2729 sprintf(generalPrint + strlen(generalPrint), 2726 2730 "Total iterations: 0\n"); 2727 #if ndef CBC_QUIET2731 #if CBC_QUIET == 0 2728 2732 sprintf(generalPrint + strlen(generalPrint), 2729 2733 "Time (CPU seconds): %.2f\n", … … 6185 6189 "Total iterations: %d\n", 6186 6190 babModel_->getIterationCount()); 6187 #if ndef CBC_QUIET6191 #if CBC_QUIET == 0 6188 6192 sprintf(generalPrint + strlen(generalPrint), 6189 6193 "Time (CPU seconds): %.2f\n", … … 8374 8378 } 8375 8379 } 8376 #if ndef CBC_QUIET8380 #if CBC_QUIET == 0 8377 8381 sprintf(generalPrint , 8378 8382 "Total time (CPU seconds): %.2f (Wallclock seconds): %.2f\n",
Note: See TracChangeset
for help on using the changeset viewer.