Changeset 945 for trunk/Couenne/src/bound_tightening
- Timestamp:
- Apr 6, 2013 4:25:21 PM (8 years ago)
- Location:
- trunk/Couenne/src/bound_tightening
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Couenne/src/bound_tightening/CouenneAggrProbing.cpp
r793 r945 52 52 void CouenneAggrProbing::registerOptions(Ipopt::SmartPtr <Bonmin::RegisteredOptions> roptions) { 53 53 // Nothing for the moment, but will be added later as needed 54 }55 56 void CouenneAggrProbing::generateCuts(const OsiSolverInterface& solver,57 OsiCuts& cuts,58 const CglTreeInfo info) const {59 // Empty for the moment (cannot be used automatically in Branch-and-Bound)60 54 } 61 55 -
trunk/Couenne/src/bound_tightening/CouenneAggrProbing.hpp
r490 r945 15 15 16 16 #include "BonOaDecBase.hpp" 17 #include "CglConfig.h" 17 18 #include "CglCutGenerator.hpp" 18 19 #include "OsiColCut.hpp" … … 55 56 void generateCuts(const OsiSolverInterface & solver, 56 57 OsiCuts& cuts, 57 const CglTreeInfo = CglTreeInfo ()) const; 58 const CglTreeInfo = CglTreeInfo ()) 59 #if CGL_VERSION_MAJOR == 0 && CGL_VERSION_MINOR <= 57 60 const 61 #endif 62 { } 58 63 59 64 /// Probe one variable (try to tigthen the lower or the upper -
trunk/Couenne/src/bound_tightening/CouenneFixPoint.hpp
r786 r945 15 15 16 16 #include "BonOaDecBase.hpp" 17 #include "CglConfig.h" 17 18 #include "CglCutGenerator.hpp" 18 19 #include "OsiRowCut.hpp" … … 48 49 void generateCuts (const OsiSolverInterface &, 49 50 OsiCuts &, 50 const CglTreeInfo = CglTreeInfo ()) const; 51 const CglTreeInfo = CglTreeInfo ()) 52 #if CGL_VERSION_MAJOR == 0 && CGL_VERSION_MINOR <= 57 53 const 54 #endif 55 ; 51 56 52 57 /// Add list of options to be read from file -
trunk/Couenne/src/bound_tightening/FixPointGenCuts.cpp
r788 r945 28 28 void CouenneFixPoint::generateCuts (const OsiSolverInterface &si, 29 29 OsiCuts &cs, 30 const CglTreeInfo treeInfo) const { 30 const CglTreeInfo treeInfo) 31 #if CGL_VERSION_MAJOR == 0 && CGL_VERSION_MINOR <= 57 32 const 33 #endif 34 { 31 35 32 36 /// Only run this if the latest FBBT terminated on the iteration -
trunk/Couenne/src/bound_tightening/twoImpliedBT/CouenneTwoImplied.hpp
r577 r945 14 14 #include "BonRegisteredOptions.hpp" 15 15 16 #include "CglConfig.h" 16 17 #include "CglCutGenerator.hpp" 17 18 #include "OsiRowCut.hpp" … … 193 194 void generateCuts (const OsiSolverInterface &, 194 195 OsiCuts &, 195 const CglTreeInfo = CglTreeInfo ()) const; 196 const CglTreeInfo = CglTreeInfo ()) 197 #if CGL_VERSION_MAJOR == 0 && CGL_VERSION_MINOR <= 57 198 const 199 #endif 200 ; 196 201 197 202 /// Add list of options to be read from file -
trunk/Couenne/src/bound_tightening/twoImpliedBT/TwoImpliedGenCuts.cpp
r939 r945 59 59 void CouenneTwoImplied::generateCuts (const OsiSolverInterface &si, 60 60 OsiCuts &cs, 61 const CglTreeInfo info) const { 61 const CglTreeInfo info) 62 #if CGL_VERSION_MAJOR == 0 && CGL_VERSION_MINOR <= 57 63 const 64 #endif 65 { 62 66 63 67 // don't perform this is cs has been added an infeasible cut (a
Note: See TracChangeset
for help on using the changeset viewer.