Changeset 2286
- Timestamp:
- Aug 15, 2016 6:19:41 AM (5 years ago)
- Location:
- trunk/Cbc/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/src/CbcEventHandler.hpp
r1987 r2286 106 106 /*! When converting constraints to cuts. */ 107 107 convertToCuts, 108 /*! Having generated cuts, allows user to think. */ 109 generatedCuts, 108 110 /*! End of search. */ 109 111 endSearch -
trunk/Cbc/src/CbcModel.cpp
r2270 r2286 8453 8453 delete [] newSolution ; 8454 8454 } 8455 8455 CbcEventHandler *eventHandler = getEventHandler() ; 8456 if (eventHandler) { 8457 // Massage cuts?? 8458 // save appData 8459 void * saveAppData = getApplicationData(); 8460 // point to cuts 8461 setApplicationData(&theseCuts); 8462 eventHandler->event(CbcEventHandler::generatedCuts); 8463 setApplicationData(saveAppData); 8464 } 8456 8465 #ifdef JJF_ZERO 8457 8466 // switch on to get all cuts printed
Note: See TracChangeset
for help on using the changeset viewer.