ruby-cbc 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/README.md +203 -0
  7. data/Rakefile +40 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +7 -0
  10. data/ext/ruby-cbc/cbc.i +15 -0
  11. data/ext/ruby-cbc/cbc_wrap.c +4618 -0
  12. data/ext/ruby-cbc/extconf.rb +60 -0
  13. data/ext/ruby-cbc/install/bin/cbc +0 -0
  14. data/ext/ruby-cbc/install/bin/clp +0 -0
  15. data/ext/ruby-cbc/install/include/coin/CbcBranchActual.hpp +24 -0
  16. data/ext/ruby-cbc/install/include/coin/CbcBranchAllDifferent.hpp +62 -0
  17. data/ext/ruby-cbc/install/include/coin/CbcBranchBase.hpp +78 -0
  18. data/ext/ruby-cbc/install/include/coin/CbcBranchCut.hpp +183 -0
  19. data/ext/ruby-cbc/install/include/coin/CbcBranchDecision.hpp +129 -0
  20. data/ext/ruby-cbc/install/include/coin/CbcBranchDefaultDecision.hpp +100 -0
  21. data/ext/ruby-cbc/install/include/coin/CbcBranchDynamic.hpp +206 -0
  22. data/ext/ruby-cbc/install/include/coin/CbcBranchLotsize.hpp +242 -0
  23. data/ext/ruby-cbc/install/include/coin/CbcBranchToFixLots.hpp +94 -0
  24. data/ext/ruby-cbc/install/include/coin/CbcBranchingObject.hpp +236 -0
  25. data/ext/ruby-cbc/install/include/coin/CbcClique.hpp +303 -0
  26. data/ext/ruby-cbc/install/include/coin/CbcCompare.hpp +39 -0
  27. data/ext/ruby-cbc/install/include/coin/CbcCompareActual.hpp +14 -0
  28. data/ext/ruby-cbc/install/include/coin/CbcCompareBase.hpp +142 -0
  29. data/ext/ruby-cbc/install/include/coin/CbcCompareDefault.hpp +120 -0
  30. data/ext/ruby-cbc/install/include/coin/CbcCompareDepth.hpp +47 -0
  31. data/ext/ruby-cbc/install/include/coin/CbcCompareEstimate.hpp +48 -0
  32. data/ext/ruby-cbc/install/include/coin/CbcCompareObjective.hpp +49 -0
  33. data/ext/ruby-cbc/install/include/coin/CbcConfig.h +14 -0
  34. data/ext/ruby-cbc/install/include/coin/CbcConsequence.hpp +49 -0
  35. data/ext/ruby-cbc/install/include/coin/CbcCountRowCut.hpp +168 -0
  36. data/ext/ruby-cbc/install/include/coin/CbcCutGenerator.hpp +482 -0
  37. data/ext/ruby-cbc/install/include/coin/CbcCutModifier.hpp +57 -0
  38. data/ext/ruby-cbc/install/include/coin/CbcCutSubsetModifier.hpp +66 -0
  39. data/ext/ruby-cbc/install/include/coin/CbcDummyBranchingObject.hpp +83 -0
  40. data/ext/ruby-cbc/install/include/coin/CbcEventHandler.hpp +245 -0
  41. data/ext/ruby-cbc/install/include/coin/CbcFathom.hpp +137 -0
  42. data/ext/ruby-cbc/install/include/coin/CbcFathomDynamicProgramming.hpp +169 -0
  43. data/ext/ruby-cbc/install/include/coin/CbcFeasibilityBase.hpp +56 -0
  44. data/ext/ruby-cbc/install/include/coin/CbcFixVariable.hpp +67 -0
  45. data/ext/ruby-cbc/install/include/coin/CbcFollowOn.hpp +207 -0
  46. data/ext/ruby-cbc/install/include/coin/CbcFullNodeInfo.hpp +161 -0
  47. data/ext/ruby-cbc/install/include/coin/CbcGeneral.hpp +60 -0
  48. data/ext/ruby-cbc/install/include/coin/CbcGeneralDepth.hpp +279 -0
  49. data/ext/ruby-cbc/install/include/coin/CbcHeuristic.hpp +682 -0
  50. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDINS.hpp +96 -0
  51. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDW.hpp +309 -0
  52. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDive.hpp +192 -0
  53. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveCoefficient.hpp +52 -0
  54. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveFractional.hpp +52 -0
  55. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveGuided.hpp +55 -0
  56. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveLineSearch.hpp +52 -0
  57. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDivePseudoCost.hpp +60 -0
  58. data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveVectorLength.hpp +52 -0
  59. data/ext/ruby-cbc/install/include/coin/CbcHeuristicFPump.hpp +340 -0
  60. data/ext/ruby-cbc/install/include/coin/CbcHeuristicGreedy.hpp +280 -0
  61. data/ext/ruby-cbc/install/include/coin/CbcHeuristicLocal.hpp +271 -0
  62. data/ext/ruby-cbc/install/include/coin/CbcHeuristicPivotAndFix.hpp +58 -0
  63. data/ext/ruby-cbc/install/include/coin/CbcHeuristicRENS.hpp +77 -0
  64. data/ext/ruby-cbc/install/include/coin/CbcHeuristicRINS.hpp +102 -0
  65. data/ext/ruby-cbc/install/include/coin/CbcHeuristicRandRound.hpp +58 -0
  66. data/ext/ruby-cbc/install/include/coin/CbcHeuristicVND.hpp +94 -0
  67. data/ext/ruby-cbc/install/include/coin/CbcLinked.hpp +1406 -0
  68. data/ext/ruby-cbc/install/include/coin/CbcMessage.hpp +94 -0
  69. data/ext/ruby-cbc/install/include/coin/CbcMipStartIO.hpp +26 -0
  70. data/ext/ruby-cbc/install/include/coin/CbcModel.hpp +2952 -0
  71. data/ext/ruby-cbc/install/include/coin/CbcNWay.hpp +166 -0
  72. data/ext/ruby-cbc/install/include/coin/CbcNode.hpp +351 -0
  73. data/ext/ruby-cbc/install/include/coin/CbcNodeInfo.hpp +349 -0
  74. data/ext/ruby-cbc/install/include/coin/CbcObject.hpp +272 -0
  75. data/ext/ruby-cbc/install/include/coin/CbcObjectUpdateData.hpp +64 -0
  76. data/ext/ruby-cbc/install/include/coin/CbcOrClpParam.cpp +4134 -0
  77. data/ext/ruby-cbc/install/include/coin/CbcOrClpParam.hpp +532 -0
  78. data/ext/ruby-cbc/install/include/coin/CbcParam.hpp +324 -0
  79. data/ext/ruby-cbc/install/include/coin/CbcPartialNodeInfo.hpp +110 -0
  80. data/ext/ruby-cbc/install/include/coin/CbcSOS.hpp +279 -0
  81. data/ext/ruby-cbc/install/include/coin/CbcSimpleInteger.hpp +286 -0
  82. data/ext/ruby-cbc/install/include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +564 -0
  83. data/ext/ruby-cbc/install/include/coin/CbcSimpleIntegerPseudoCost.hpp +114 -0
  84. data/ext/ruby-cbc/install/include/coin/CbcSolver.hpp +447 -0
  85. data/ext/ruby-cbc/install/include/coin/CbcStrategy.hpp +258 -0
  86. data/ext/ruby-cbc/install/include/coin/CbcSubProblem.hpp +83 -0
  87. data/ext/ruby-cbc/install/include/coin/CbcTree.hpp +490 -0
  88. data/ext/ruby-cbc/install/include/coin/CbcTreeLocal.hpp +372 -0
  89. data/ext/ruby-cbc/install/include/coin/Cbc_C_Interface.h +381 -0
  90. data/ext/ruby-cbc/install/include/coin/Cgl012cut.hpp +464 -0
  91. data/ext/ruby-cbc/install/include/coin/CglAllDifferent.hpp +115 -0
  92. data/ext/ruby-cbc/install/include/coin/CglClique.hpp +308 -0
  93. data/ext/ruby-cbc/install/include/coin/CglConfig.h +19 -0
  94. data/ext/ruby-cbc/install/include/coin/CglCutGenerator.hpp +121 -0
  95. data/ext/ruby-cbc/install/include/coin/CglDuplicateRow.hpp +189 -0
  96. data/ext/ruby-cbc/install/include/coin/CglFlowCover.hpp +371 -0
  97. data/ext/ruby-cbc/install/include/coin/CglGMI.hpp +364 -0
  98. data/ext/ruby-cbc/install/include/coin/CglGMIParam.hpp +313 -0
  99. data/ext/ruby-cbc/install/include/coin/CglGomory.hpp +204 -0
  100. data/ext/ruby-cbc/install/include/coin/CglKnapsackCover.hpp +310 -0
  101. data/ext/ruby-cbc/install/include/coin/CglLandP.hpp +306 -0
  102. data/ext/ruby-cbc/install/include/coin/CglLandPValidator.hpp +130 -0
  103. data/ext/ruby-cbc/install/include/coin/CglLiftAndProject.hpp +104 -0
  104. data/ext/ruby-cbc/install/include/coin/CglMessage.hpp +50 -0
  105. data/ext/ruby-cbc/install/include/coin/CglMixedIntegerRounding.hpp +429 -0
  106. data/ext/ruby-cbc/install/include/coin/CglMixedIntegerRounding2.hpp +427 -0
  107. data/ext/ruby-cbc/install/include/coin/CglOddHole.hpp +160 -0
  108. data/ext/ruby-cbc/install/include/coin/CglParam.hpp +93 -0
  109. data/ext/ruby-cbc/install/include/coin/CglPreProcess.hpp +492 -0
  110. data/ext/ruby-cbc/install/include/coin/CglProbing.hpp +543 -0
  111. data/ext/ruby-cbc/install/include/coin/CglRedSplit.hpp +448 -0
  112. data/ext/ruby-cbc/install/include/coin/CglRedSplit2.hpp +494 -0
  113. data/ext/ruby-cbc/install/include/coin/CglRedSplit2Param.hpp +495 -0
  114. data/ext/ruby-cbc/install/include/coin/CglRedSplitParam.hpp +272 -0
  115. data/ext/ruby-cbc/install/include/coin/CglResidualCapacity.hpp +240 -0
  116. data/ext/ruby-cbc/install/include/coin/CglSimpleRounding.hpp +174 -0
  117. data/ext/ruby-cbc/install/include/coin/CglStored.hpp +125 -0
  118. data/ext/ruby-cbc/install/include/coin/CglTreeInfo.hpp +180 -0
  119. data/ext/ruby-cbc/install/include/coin/CglTwomir.hpp +565 -0
  120. data/ext/ruby-cbc/install/include/coin/CglZeroHalf.hpp +133 -0
  121. data/ext/ruby-cbc/install/include/coin/ClpAmplObjective.hpp +113 -0
  122. data/ext/ruby-cbc/install/include/coin/ClpCholeskyBase.hpp +294 -0
  123. data/ext/ruby-cbc/install/include/coin/ClpCholeskyDense.hpp +162 -0
  124. data/ext/ruby-cbc/install/include/coin/ClpConfig.h +17 -0
  125. data/ext/ruby-cbc/install/include/coin/ClpConstraint.hpp +125 -0
  126. data/ext/ruby-cbc/install/include/coin/ClpConstraintAmpl.hpp +108 -0
  127. data/ext/ruby-cbc/install/include/coin/ClpConstraintLinear.hpp +110 -0
  128. data/ext/ruby-cbc/install/include/coin/ClpConstraintQuadratic.hpp +119 -0
  129. data/ext/ruby-cbc/install/include/coin/ClpDualRowDantzig.hpp +71 -0
  130. data/ext/ruby-cbc/install/include/coin/ClpDualRowPivot.hpp +129 -0
  131. data/ext/ruby-cbc/install/include/coin/ClpDualRowSteepest.hpp +153 -0
  132. data/ext/ruby-cbc/install/include/coin/ClpDummyMatrix.hpp +183 -0
  133. data/ext/ruby-cbc/install/include/coin/ClpDynamicExampleMatrix.hpp +186 -0
  134. data/ext/ruby-cbc/install/include/coin/ClpDynamicMatrix.hpp +381 -0
  135. data/ext/ruby-cbc/install/include/coin/ClpEventHandler.hpp +187 -0
  136. data/ext/ruby-cbc/install/include/coin/ClpFactorization.hpp +432 -0
  137. data/ext/ruby-cbc/install/include/coin/ClpGubDynamicMatrix.hpp +247 -0
  138. data/ext/ruby-cbc/install/include/coin/ClpGubMatrix.hpp +358 -0
  139. data/ext/ruby-cbc/install/include/coin/ClpInterior.hpp +570 -0
  140. data/ext/ruby-cbc/install/include/coin/ClpLinearObjective.hpp +103 -0
  141. data/ext/ruby-cbc/install/include/coin/ClpMatrixBase.hpp +524 -0
  142. data/ext/ruby-cbc/install/include/coin/ClpMessage.hpp +131 -0
  143. data/ext/ruby-cbc/install/include/coin/ClpModel.hpp +1307 -0
  144. data/ext/ruby-cbc/install/include/coin/ClpNetworkMatrix.hpp +229 -0
  145. data/ext/ruby-cbc/install/include/coin/ClpNode.hpp +349 -0
  146. data/ext/ruby-cbc/install/include/coin/ClpNonLinearCost.hpp +401 -0
  147. data/ext/ruby-cbc/install/include/coin/ClpObjective.hpp +134 -0
  148. data/ext/ruby-cbc/install/include/coin/ClpPackedMatrix.hpp +638 -0
  149. data/ext/ruby-cbc/install/include/coin/ClpParameters.hpp +126 -0
  150. data/ext/ruby-cbc/install/include/coin/ClpPdcoBase.hpp +103 -0
  151. data/ext/ruby-cbc/install/include/coin/ClpPlusMinusOneMatrix.hpp +290 -0
  152. data/ext/ruby-cbc/install/include/coin/ClpPresolve.hpp +299 -0
  153. data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnDantzig.hpp +72 -0
  154. data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnPivot.hpp +155 -0
  155. data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnSteepest.hpp +247 -0
  156. data/ext/ruby-cbc/install/include/coin/ClpQuadraticObjective.hpp +155 -0
  157. data/ext/ruby-cbc/install/include/coin/ClpSimplex.hpp +1797 -0
  158. data/ext/ruby-cbc/install/include/coin/ClpSimplexDual.hpp +300 -0
  159. data/ext/ruby-cbc/install/include/coin/ClpSimplexNonlinear.hpp +117 -0
  160. data/ext/ruby-cbc/install/include/coin/ClpSimplexOther.hpp +277 -0
  161. data/ext/ruby-cbc/install/include/coin/ClpSimplexPrimal.hpp +244 -0
  162. data/ext/ruby-cbc/install/include/coin/ClpSolve.hpp +446 -0
  163. data/ext/ruby-cbc/install/include/coin/Clp_C_Interface.h +525 -0
  164. data/ext/ruby-cbc/install/include/coin/CoinAlloc.hpp +176 -0
  165. data/ext/ruby-cbc/install/include/coin/CoinBuild.hpp +149 -0
  166. data/ext/ruby-cbc/install/include/coin/CoinDenseFactorization.hpp +419 -0
  167. data/ext/ruby-cbc/install/include/coin/CoinDenseVector.hpp +383 -0
  168. data/ext/ruby-cbc/install/include/coin/CoinDistance.hpp +48 -0
  169. data/ext/ruby-cbc/install/include/coin/CoinError.hpp +257 -0
  170. data/ext/ruby-cbc/install/include/coin/CoinFactorization.hpp +2044 -0
  171. data/ext/ruby-cbc/install/include/coin/CoinFileIO.hpp +166 -0
  172. data/ext/ruby-cbc/install/include/coin/CoinFinite.hpp +34 -0
  173. data/ext/ruby-cbc/install/include/coin/CoinFloatEqual.hpp +177 -0
  174. data/ext/ruby-cbc/install/include/coin/CoinHelperFunctions.hpp +1111 -0
  175. data/ext/ruby-cbc/install/include/coin/CoinIndexedVector.hpp +1164 -0
  176. data/ext/ruby-cbc/install/include/coin/CoinLpIO.hpp +805 -0
  177. data/ext/ruby-cbc/install/include/coin/CoinMessage.hpp +96 -0
  178. data/ext/ruby-cbc/install/include/coin/CoinMessageHandler.hpp +666 -0
  179. data/ext/ruby-cbc/install/include/coin/CoinModel.hpp +1054 -0
  180. data/ext/ruby-cbc/install/include/coin/CoinModelUseful.hpp +441 -0
  181. data/ext/ruby-cbc/install/include/coin/CoinMpsIO.hpp +1056 -0
  182. data/ext/ruby-cbc/install/include/coin/CoinOslFactorization.hpp +280 -0
  183. data/ext/ruby-cbc/install/include/coin/CoinPackedMatrix.hpp +947 -0
  184. data/ext/ruby-cbc/install/include/coin/CoinPackedVector.hpp +657 -0
  185. data/ext/ruby-cbc/install/include/coin/CoinPackedVectorBase.hpp +269 -0
  186. data/ext/ruby-cbc/install/include/coin/CoinParam.hpp +644 -0
  187. data/ext/ruby-cbc/install/include/coin/CoinPragma.hpp +26 -0
  188. data/ext/ruby-cbc/install/include/coin/CoinPresolveDoubleton.hpp +73 -0
  189. data/ext/ruby-cbc/install/include/coin/CoinPresolveDual.hpp +85 -0
  190. data/ext/ruby-cbc/install/include/coin/CoinPresolveDupcol.hpp +226 -0
  191. data/ext/ruby-cbc/install/include/coin/CoinPresolveEmpty.hpp +116 -0
  192. data/ext/ruby-cbc/install/include/coin/CoinPresolveFixed.hpp +181 -0
  193. data/ext/ruby-cbc/install/include/coin/CoinPresolveForcing.hpp +61 -0
  194. data/ext/ruby-cbc/install/include/coin/CoinPresolveImpliedFree.hpp +60 -0
  195. data/ext/ruby-cbc/install/include/coin/CoinPresolveIsolated.hpp +51 -0
  196. data/ext/ruby-cbc/install/include/coin/CoinPresolveMatrix.hpp +1842 -0
  197. data/ext/ruby-cbc/install/include/coin/CoinPresolveMonitor.hpp +105 -0
  198. data/ext/ruby-cbc/install/include/coin/CoinPresolvePsdebug.hpp +166 -0
  199. data/ext/ruby-cbc/install/include/coin/CoinPresolveSingleton.hpp +112 -0
  200. data/ext/ruby-cbc/install/include/coin/CoinPresolveSubst.hpp +101 -0
  201. data/ext/ruby-cbc/install/include/coin/CoinPresolveTighten.hpp +55 -0
  202. data/ext/ruby-cbc/install/include/coin/CoinPresolveTripleton.hpp +66 -0
  203. data/ext/ruby-cbc/install/include/coin/CoinPresolveUseless.hpp +63 -0
  204. data/ext/ruby-cbc/install/include/coin/CoinPresolveZeros.hpp +60 -0
  205. data/ext/ruby-cbc/install/include/coin/CoinRational.hpp +44 -0
  206. data/ext/ruby-cbc/install/include/coin/CoinSearchTree.hpp +465 -0
  207. data/ext/ruby-cbc/install/include/coin/CoinShallowPackedVector.hpp +148 -0
  208. data/ext/ruby-cbc/install/include/coin/CoinSignal.hpp +117 -0
  209. data/ext/ruby-cbc/install/include/coin/CoinSimpFactorization.hpp +431 -0
  210. data/ext/ruby-cbc/install/include/coin/CoinSmartPtr.hpp +528 -0
  211. data/ext/ruby-cbc/install/include/coin/CoinSnapshot.hpp +476 -0
  212. data/ext/ruby-cbc/install/include/coin/CoinSort.hpp +678 -0
  213. data/ext/ruby-cbc/install/include/coin/CoinStructuredModel.hpp +247 -0
  214. data/ext/ruby-cbc/install/include/coin/CoinTime.hpp +310 -0
  215. data/ext/ruby-cbc/install/include/coin/CoinTypes.hpp +64 -0
  216. data/ext/ruby-cbc/install/include/coin/CoinUtility.hpp +19 -0
  217. data/ext/ruby-cbc/install/include/coin/CoinUtilsConfig.h +34 -0
  218. data/ext/ruby-cbc/install/include/coin/CoinWarmStart.hpp +58 -0
  219. data/ext/ruby-cbc/install/include/coin/CoinWarmStartBasis.hpp +456 -0
  220. data/ext/ruby-cbc/install/include/coin/CoinWarmStartDual.hpp +166 -0
  221. data/ext/ruby-cbc/install/include/coin/CoinWarmStartPrimalDual.hpp +211 -0
  222. data/ext/ruby-cbc/install/include/coin/CoinWarmStartVector.hpp +488 -0
  223. data/ext/ruby-cbc/install/include/coin/Coin_C_defines.h +115 -0
  224. data/ext/ruby-cbc/install/include/coin/Idiot.hpp +298 -0
  225. data/ext/ruby-cbc/install/include/coin/OsiAuxInfo.hpp +206 -0
  226. data/ext/ruby-cbc/install/include/coin/OsiBranchingObject.hpp +1005 -0
  227. data/ext/ruby-cbc/install/include/coin/OsiCbcSolverInterface.hpp +764 -0
  228. data/ext/ruby-cbc/install/include/coin/OsiChooseVariable.hpp +534 -0
  229. data/ext/ruby-cbc/install/include/coin/OsiClpSolverInterface.hpp +1509 -0
  230. data/ext/ruby-cbc/install/include/coin/OsiColCut.hpp +324 -0
  231. data/ext/ruby-cbc/install/include/coin/OsiCollections.hpp +35 -0
  232. data/ext/ruby-cbc/install/include/coin/OsiConfig.h +19 -0
  233. data/ext/ruby-cbc/install/include/coin/OsiCut.hpp +245 -0
  234. data/ext/ruby-cbc/install/include/coin/OsiCuts.hpp +474 -0
  235. data/ext/ruby-cbc/install/include/coin/OsiPresolve.hpp +252 -0
  236. data/ext/ruby-cbc/install/include/coin/OsiRowCut.hpp +331 -0
  237. data/ext/ruby-cbc/install/include/coin/OsiRowCutDebugger.hpp +187 -0
  238. data/ext/ruby-cbc/install/include/coin/OsiSolverBranch.hpp +152 -0
  239. data/ext/ruby-cbc/install/include/coin/OsiSolverInterface.hpp +2143 -0
  240. data/ext/ruby-cbc/install/include/coin/OsiSolverParameters.hpp +142 -0
  241. data/ext/ruby-cbc/install/include/coin/OsiUnitTests.hpp +374 -0
  242. data/ext/ruby-cbc/install/lib/libCbc.la +35 -0
  243. data/ext/ruby-cbc/install/lib/libCbc.so +0 -0
  244. data/ext/ruby-cbc/install/lib/libCbc.so.3 +0 -0
  245. data/ext/ruby-cbc/install/lib/libCbc.so.3.9.7 +0 -0
  246. data/ext/ruby-cbc/install/lib/libCbcSolver.la +35 -0
  247. data/ext/ruby-cbc/install/lib/libCbcSolver.so +0 -0
  248. data/ext/ruby-cbc/install/lib/libCbcSolver.so.3 +0 -0
  249. data/ext/ruby-cbc/install/lib/libCbcSolver.so.3.9.7 +0 -0
  250. data/ext/ruby-cbc/install/lib/libCgl.la +35 -0
  251. data/ext/ruby-cbc/install/lib/libCgl.so +0 -0
  252. data/ext/ruby-cbc/install/lib/libCgl.so.1 +0 -0
  253. data/ext/ruby-cbc/install/lib/libCgl.so.1.9.7 +0 -0
  254. data/ext/ruby-cbc/install/lib/libClp.la +35 -0
  255. data/ext/ruby-cbc/install/lib/libClp.so +0 -0
  256. data/ext/ruby-cbc/install/lib/libClp.so.1 +0 -0
  257. data/ext/ruby-cbc/install/lib/libClp.so.1.13.9 +0 -0
  258. data/ext/ruby-cbc/install/lib/libClpSolver.la +35 -0
  259. data/ext/ruby-cbc/install/lib/libClpSolver.so +0 -0
  260. data/ext/ruby-cbc/install/lib/libClpSolver.so.1 +0 -0
  261. data/ext/ruby-cbc/install/lib/libClpSolver.so.1.13.9 +0 -0
  262. data/ext/ruby-cbc/install/lib/libCoinUtils.la +35 -0
  263. data/ext/ruby-cbc/install/lib/libCoinUtils.so +0 -0
  264. data/ext/ruby-cbc/install/lib/libCoinUtils.so.3 +0 -0
  265. data/ext/ruby-cbc/install/lib/libCoinUtils.so.3.10.11 +0 -0
  266. data/ext/ruby-cbc/install/lib/libOsi.la +35 -0
  267. data/ext/ruby-cbc/install/lib/libOsi.so +0 -0
  268. data/ext/ruby-cbc/install/lib/libOsi.so.1 +0 -0
  269. data/ext/ruby-cbc/install/lib/libOsi.so.1.12.6 +0 -0
  270. data/ext/ruby-cbc/install/lib/libOsiCbc.la +35 -0
  271. data/ext/ruby-cbc/install/lib/libOsiCbc.so +0 -0
  272. data/ext/ruby-cbc/install/lib/libOsiCbc.so.3 +0 -0
  273. data/ext/ruby-cbc/install/lib/libOsiCbc.so.3.9.7 +0 -0
  274. data/ext/ruby-cbc/install/lib/libOsiClp.la +35 -0
  275. data/ext/ruby-cbc/install/lib/libOsiClp.so +0 -0
  276. data/ext/ruby-cbc/install/lib/libOsiClp.so.1 +0 -0
  277. data/ext/ruby-cbc/install/lib/libOsiClp.so.1.13.9 +0 -0
  278. data/ext/ruby-cbc/install/lib/libOsiCommonTests.la +35 -0
  279. data/ext/ruby-cbc/install/lib/libOsiCommonTests.so +0 -0
  280. data/ext/ruby-cbc/install/lib/libOsiCommonTests.so.1 +0 -0
  281. data/ext/ruby-cbc/install/lib/libOsiCommonTests.so.1.12.6 +0 -0
  282. data/ext/ruby-cbc/install/lib/pkgconfig/cbc.pc +12 -0
  283. data/ext/ruby-cbc/install/lib/pkgconfig/cgl.pc +12 -0
  284. data/ext/ruby-cbc/install/lib/pkgconfig/clp.pc +12 -0
  285. data/ext/ruby-cbc/install/lib/pkgconfig/coindatamiplib3.pc +9 -0
  286. data/ext/ruby-cbc/install/lib/pkgconfig/coindatasample.pc +9 -0
  287. data/ext/ruby-cbc/install/lib/pkgconfig/coinutils.pc +12 -0
  288. data/ext/ruby-cbc/install/lib/pkgconfig/osi-cbc.pc +12 -0
  289. data/ext/ruby-cbc/install/lib/pkgconfig/osi-clp.pc +12 -0
  290. data/ext/ruby-cbc/install/lib/pkgconfig/osi-unittests.pc +12 -0
  291. data/ext/ruby-cbc/install/lib/pkgconfig/osi.pc +12 -0
  292. data/lib/ruby-cbc/ilp/constant.rb +44 -0
  293. data/lib/ruby-cbc/ilp/constraint.rb +32 -0
  294. data/lib/ruby-cbc/ilp/objective.rb +26 -0
  295. data/lib/ruby-cbc/ilp/term.rb +47 -0
  296. data/lib/ruby-cbc/ilp/term_array.rb +80 -0
  297. data/lib/ruby-cbc/ilp/var.rb +62 -0
  298. data/lib/ruby-cbc/model.rb +125 -0
  299. data/lib/ruby-cbc/problem.rb +170 -0
  300. data/lib/ruby-cbc/version.rb +3 -0
  301. data/lib/ruby-cbc.rb +21 -0
  302. data/ruby-cbc.gemspec +36 -0
  303. metadata +431 -0
@@ -0,0 +1,494 @@
1
+ // Last edit: 04/03/10
2
+ //
3
+ // Name: CglRedSplit2.hpp
4
+ // Author: Giacomo Nannicini
5
+ // Singapore University of Technology and Design
6
+ // Singapore
7
+ // email: nannicini@sutd.edu.sg
8
+ // based on CglRedSplit by Francois Margot
9
+ // Date: 03/09/09
10
+ //-----------------------------------------------------------------------------
11
+ // Copyright (C) 2010, Giacomo Nannicini and others. All Rights Reserved.
12
+
13
+ #ifndef CglRedSplit2_H
14
+ #define CglRedSplit2_H
15
+
16
+ #include "CglCutGenerator.hpp"
17
+ #include "CglRedSplit2Param.hpp"
18
+ #include "CoinWarmStartBasis.hpp"
19
+ #include "CoinHelperFunctions.hpp"
20
+ #include "CoinTime.hpp"
21
+
22
+ /** Reduce-and-Split Cut Generator Class; See method generateCuts().
23
+ Based on the papers "Practical strategies for generating rank-1
24
+ split cuts in mixed-integer linear programming" by G. Cornuejols
25
+ and G. Nannicini, published on Mathematical Programming
26
+ Computation, and "Combining Lift-and-Project and Reduce-and-Split"
27
+ by E. Balas, G. Cornuejols, T. Kis and G. Nannicini, published on
28
+ INFORMS Journal on Computing. Part of this code is based on
29
+ CglRedSplit by F. Margot. */
30
+
31
+ class CglRedSplit2 : public CglCutGenerator {
32
+
33
+ friend void CglRedSplit2UnitTest(const OsiSolverInterface * siP,
34
+ const std::string mpdDir);
35
+ public:
36
+ /**@name generateCuts */
37
+ //@{
38
+ /** Generate Reduce-and-Split Mixed Integer Gomory cuts
39
+ for the model of the solver interface si.
40
+
41
+ Insert the generated cuts into OsiCuts cs.
42
+
43
+ This generator currently works only with the Lp solvers Clp or
44
+ Cplex9.0 or higher. It requires access to the optimal tableau
45
+ and optimal basis inverse and makes assumptions on the way slack
46
+ variables are added by the solver. The Osi implementations for
47
+ Clp and Cplex verify these assumptions.
48
+
49
+ When calling the generator, the solver interface si must contain
50
+ an optimized problem and information related to the optimal
51
+ basis must be available through the OsiSolverInterface methods
52
+ (si->optimalBasisIsAvailable() must return 'true'). It is also
53
+ essential that the integrality of structural variable i can be
54
+ obtained using si->isInteger(i).
55
+
56
+ Reduce-and-Split cuts are a class of split cuts. We compute
57
+ linear combinations of the rows of the simplex tableau, trying
58
+ to reduce some of the coefficients on the nonbasic continuous
59
+ columns. We have a large number of heuristics to choose which
60
+ coefficients should be reduced, and by using which rows. The
61
+ paper explains everything in detail.
62
+
63
+ Note that this generator can potentially generate a huge number
64
+ of cuts, depending on how it is parametered. Default parameters
65
+ should be good for most situations; if you want to go heavy on
66
+ split cuts, use more row selection strategies or a different
67
+ number of rows in the linear combinations. Again, look at the
68
+ paper for details. If you want to generate a small number of
69
+ cuts, default parameters are not the best choice.
70
+
71
+ A combination of Reduce-and-Split with Lift & Project is
72
+ described in the paper "Combining Lift-and-Project and
73
+ Reduce-and-Split". The Reduce-and-Split code for the
74
+ implementation used in that paper is included here.
75
+
76
+ This generator does not generate the same cuts as CglRedSplit,
77
+ therefore both generators can be used in conjunction.
78
+
79
+ */
80
+
81
+ virtual void generateCuts(const OsiSolverInterface & si, OsiCuts & cs,
82
+ const CglTreeInfo info = CglTreeInfo());
83
+
84
+ /// Return true if needs optimal basis to do cuts (will return true)
85
+ virtual bool needsOptimalBasis() const;
86
+
87
+ // Generate the row multipliers computed by Reduce-and-Split from the
88
+ // given OsiSolverInterface. The multipliers are written in lambda;
89
+ // lambda should be of size nrow*maxNumMultipliers. We generate at most
90
+ // maxNumMultipliers m-vectors of row multipliers, and return the number
91
+ // of m-vectors that were generated.
92
+ // If the caller wants to know which variables are basic in each row
93
+ // (same order as lambda), basicVariables should be non-NULL (size nrow).
94
+ // This method can also generate the cuts corresponding to the multipliers
95
+ // returned; it suffices to pass non-NULL OsiCuts.
96
+ // This method is not needed by the typical user; however, it is useful
97
+ // in the context of generating Lift & Project cuts.
98
+ int generateMultipliers(const OsiSolverInterface& si, int* lambda,
99
+ int maxNumMultipliers, int* basicVariables = NULL,
100
+ OsiCuts* cs = NULL);
101
+
102
+ // Try to improve a Lift & Project cut, by employing the
103
+ // Reduce-and-Split procedure. We start from a row of a L&P tableau,
104
+ // and generate a cut trying to reduce the coefficients on the
105
+ // nonbasic variables. Note that this L&P tableau will in general
106
+ // have nonbasic variables which are nonzero in the point that we
107
+ // want to cut off, so we should be careful. Arguments:
108
+ // OsiSolverInterface which contains the simplex tableau, initial
109
+ // row from which the cut is derived, row rhs, row number of the
110
+ // source row (if it is in the simplex tableau; otherwise, a
111
+ // negative number; needed to avoid using duplicate rows), point
112
+ // that we want to cut off (note: this is NOT a basic solution for
113
+ // the OsiSolverInterace!), list of variables which are basic in
114
+ // xbar but are nonbasic in the OsiSolverInterface. The computed cut
115
+ // is written in OsiRowCut* cs. Finally, if a starting disjunction
116
+ // is provided in the vector lambda (of size ncols, i.e. a
117
+ // disjunction on the structural variables), the disjunction is
118
+ // modified according to the cut which is produced.
119
+ int tiltLandPcut(const OsiSolverInterface* si, double* row,
120
+ double rowRhs, int rownumber, const double* xbar,
121
+ const int* newnonbasics, OsiRowCut* cs, int* lambda = NULL);
122
+
123
+ //@}
124
+
125
+
126
+ /**@name Public Methods */
127
+ //@{
128
+
129
+ // Set the parameters to the values of the given CglRedSplit2Param object.
130
+ void setParam(const CglRedSplit2Param &source);
131
+ // Return the CglRedSplit2Param object of the generator.
132
+ inline CglRedSplit2Param& getParam() {return param;}
133
+
134
+ /// Print some of the data members; used for debugging
135
+ void print() const;
136
+
137
+ /// Print the current simplex tableau
138
+ void printOptTab(OsiSolverInterface *solver) const;
139
+
140
+ //@}
141
+
142
+ /**@name Constructors and destructors */
143
+ //@{
144
+ /// Default constructor
145
+ CglRedSplit2();
146
+
147
+ /// Constructor with specified parameters
148
+ CglRedSplit2(const CglRedSplit2Param &RS_param);
149
+
150
+ /// Copy constructor
151
+ CglRedSplit2(const CglRedSplit2 &);
152
+
153
+ /// Clone
154
+ virtual CglCutGenerator * clone() const;
155
+
156
+ /// Assignment operator
157
+ CglRedSplit2 & operator=(const CglRedSplit2& rhs);
158
+
159
+ /// Destructor
160
+ virtual ~CglRedSplit2 ();
161
+
162
+ //@}
163
+
164
+ private:
165
+
166
+ // Private member methods
167
+
168
+ /**@name Private member methods */
169
+
170
+ //@{
171
+
172
+ // Method generating the cuts after all CglRedSplit2 members are
173
+ // properly set. This does the actual work. Returns the number of
174
+ // generated cuts (or multipliers).
175
+ // Will generate cuts if cs != NULL, and will generate multipliers
176
+ // if lambda != NULL.
177
+ int generateCuts(OsiCuts* cs, int maxNumCuts, int* lambda = NULL);
178
+
179
+ /// Compute the fractional part of value, allowing for small error.
180
+ inline double rs_above_integer(const double value) const;
181
+
182
+ /// Fill workNonBasicTab, depending on the column selection strategy.
183
+ /// Accepts a list of variables indices that should be ignored; by
184
+ /// default, this list is empty (it is only used by Lift & Project).
185
+ /// The list ignore_list contains -1 as the last element.
186
+ /// Note that the implementation of the ignore_list is not very efficient
187
+ /// if the list is long, so it should be used only if its short.
188
+ void fill_workNonBasicTab(CglRedSplit2Param::ColumnSelectionStrategy
189
+ strategy, const int* ignore_list = NULL);
190
+
191
+ /// Fill workNonBasicTab, alternate version for Lift & Project: also
192
+ /// reduces columns which are now nonbasic but are basic in xbar.
193
+ /// This function should be called only when CglRedSplit2 is used in
194
+ /// conjunction with CglLandP to generate L&P+RS cuts.
195
+ void fill_workNonBasicTab(const int* newnonbasics, const double* xbar,
196
+ CglRedSplit2Param::ColumnScalingStrategy scaling);
197
+
198
+ /// Reduce rows of workNonBasicTab, i.e. compute integral linear
199
+ /// combinations of the rows in order to reduce row coefficients on
200
+ /// workNonBasicTab
201
+ void reduce_workNonBasicTab(int numRows,
202
+ CglRedSplit2Param::RowSelectionStrategy
203
+ rowSelectionStrategy,
204
+ int maxIterations);
205
+
206
+ /// Generate a linear combination of the rows of the current LP
207
+ /// tableau, using the row multipliers stored in the matrix pi_mat
208
+ /// on the row of index index_row
209
+ void generate_row(int index_row, double *row);
210
+
211
+ /// Generate a mixed integer Gomory cut, when all non basic
212
+ /// variables are non negative and at their lower bound.
213
+ int generate_cgcut(double *row, double *rhs);
214
+
215
+ /// Use multiples of the initial inequalities to cancel out the coefficients
216
+ /// of the slack variables.
217
+ void eliminate_slacks(double *row,
218
+ const double *elements,
219
+ const int *start,
220
+ const int *indices,
221
+ const int *rowLength,
222
+ const double *rhs, double *rowrhs);
223
+
224
+ /// Change the sign of the coefficients of the continuous non basic
225
+ /// variables at their upper bound.
226
+ void flip(double *row);
227
+
228
+ /// Change the sign of the coefficients of the continuous non basic
229
+ /// variables at their upper bound and do the translations restoring
230
+ /// the original bounds. Modify the right hand side
231
+ /// accordingly.
232
+ void unflip(double *row, double *rowrhs);
233
+
234
+ /// Returns 1 if the row has acceptable max/min coeff ratio.
235
+ /// Compute max_coeff: maximum absolute value of the coefficients.
236
+ /// Compute min_coeff: minimum absolute value of the coefficients
237
+ /// larger than EPS_COEFF.
238
+ /// Return 0 if max_coeff/min_coeff > MAXDYN.
239
+ int check_dynamism(double *row);
240
+
241
+ /// Generate the packed cut from the row representation.
242
+ int generate_packed_row(const double *xlp, double *row,
243
+ int *rowind, double *rowelem,
244
+ int *card_row, double & rhs);
245
+
246
+ // Compute entries of is_integer.
247
+ void compute_is_integer();
248
+
249
+ // Check that two vectors are different.
250
+ bool rs_are_different_vectors(const int *vect1,
251
+ const int *vect2,
252
+ const int dim);
253
+
254
+ // allocate matrix of integers
255
+ void rs_allocmatINT(int ***v, int m, int n);
256
+ // deallocate matrix of integers
257
+ void rs_deallocmatINT(int ***v, int m);
258
+ // allocate matrix of doubles
259
+ void rs_allocmatDBL(double ***v, int m, int n);
260
+ // deallocate matrix of doubles
261
+ void rs_deallocmatDBL(double ***v, int m);
262
+ // print a vector of integers
263
+ void rs_printvecINT(const char *vecstr, const int *x, int n) const;
264
+ // print a vector of doubles
265
+ void rs_printvecDBL(const char *vecstr, const double *x, int n) const;
266
+ // print a matrix of integers
267
+ void rs_printmatINT(const char *vecstr, const int * const *x, int m, int n) const;
268
+ // print a matrix of doubles
269
+ void rs_printmatDBL(const char *vecstr, const double * const *x, int m, int n) const;
270
+ // dot product
271
+ double rs_dotProd(const double *u, const double *v, int dim) const;
272
+ double rs_dotProd(const int *u, const double *v, int dim) const;
273
+ // From Numerical Recipes in C: LU decomposition
274
+ int ludcmp(double **a, int n, int *indx, double *d, double* vv) const;
275
+ // from Numerical Recipes in C: backward substitution
276
+ void lubksb(double **a, int n, int *indx, double *b) const;
277
+
278
+ // Check if the linear combination given by listOfRows with given multipliers
279
+ // improves the norm of row #rowindex; note: multipliers are rounded!
280
+ // Returns the difference with respect to the old norm (if negative there is
281
+ // an improvement, if positive norm increases)
282
+ double compute_norm_change(double oldnorm, const int* listOfRows,
283
+ int numElemList, const double* multipliers) const;
284
+
285
+ // Compute the list of rows that should be used to reduce row #rowIndex
286
+ int get_list_rows_reduction(int rowIndex, int numRowsReduction,
287
+ int* list, const double* norm,
288
+ CglRedSplit2Param::RowSelectionStrategy
289
+ rowSelectionStrategy) const;
290
+
291
+ // Sorts the rows by increasing number of nonzeroes with respect to a given
292
+ // row (rowIndex), on the nonbasic variables (whichTab == 0 means only
293
+ // integer, whichTab == 1 means only workTab, whichTab == 2 means both).
294
+ // The array for sorting must be allocated (and deleted) by caller.
295
+ // Corresponds to BRS1 in the paper.
296
+ int sort_rows_by_nonzeroes(struct sortElement* array, int rowIndex,
297
+ int maxRows, int whichTab) const;
298
+
299
+ // Greedy variant of the previous function; slower but typically
300
+ // more effective. Corresponds to BRS2 in the paper.
301
+ int sort_rows_by_nonzeroes_greedy(struct sortElement* array, int rowIndex,
302
+ int maxRows, int whichTab) const;
303
+
304
+ // Sorts the rows by decreasing absolute value of the cosine of the
305
+ // angle with respect to a given row (rowIndex), on the nonbasic
306
+ // variables (whichTab == 0 means only integer, whichTab == 1 means
307
+ // only workTab, whichTab == 2 means both). The array for sorting
308
+ // must be allocated (and deleted) by caller. Very effective
309
+ // strategy in practice. Corresponds to BRS3 in the paper.
310
+ int sort_rows_by_cosine(struct sortElement* array, int rowIndex,
311
+ int maxRows, int whichTab) const;
312
+
313
+ // Did we hit the time limit?
314
+ inline bool checkTime() const{
315
+ if ((CoinCpuTime() - startTime) < param.getTimeLimit()){
316
+ return true;
317
+ }
318
+ return false;
319
+ }
320
+
321
+ //@}
322
+
323
+
324
+ // Private member data
325
+
326
+ /**@name Private member data */
327
+
328
+ //@{
329
+
330
+ /// Object with CglRedSplit2Param members.
331
+ CglRedSplit2Param param;
332
+
333
+ /// Number of rows ( = number of slack variables) in the current LP.
334
+ int nrow;
335
+
336
+ /// Number of structural variables in the current LP.
337
+ int ncol;
338
+
339
+ /// Number of rows which have been reduced
340
+ int numRedRows;
341
+
342
+ /// Lower bounds for structural variables
343
+ const double *colLower;
344
+
345
+ /// Upper bounds for structural variables
346
+ const double *colUpper;
347
+
348
+ /// Lower bounds for constraints
349
+ const double *rowLower;
350
+
351
+ /// Upper bounds for constraints
352
+ const double *rowUpper;
353
+
354
+ /// Righ hand side for constraints (upper bound for ranged constraints).
355
+ const double *rowRhs;
356
+
357
+ /// Reduced costs for columns
358
+ const double *reducedCost;
359
+
360
+ /// Row price
361
+ const double *rowPrice;
362
+
363
+ /// Objective coefficients
364
+ const double* objective;
365
+
366
+ /// Number of integer basic structural variables
367
+ int card_intBasicVar;
368
+
369
+ /// Number of integer basic structural variables that are fractional in the
370
+ /// current lp solution (at least param.away_ from being integer).
371
+ int card_intBasicVar_frac;
372
+
373
+ /// Number of integer non basic structural variables in the
374
+ /// current lp solution.
375
+ int card_intNonBasicVar;
376
+
377
+ /// Number of continuous non basic variables (structural or slack) in the
378
+ /// current lp solution.
379
+ int card_contNonBasicVar;
380
+
381
+ /// Number of continuous non basic variables (structural or slack) in the
382
+ /// current working set for coefficient reduction
383
+ int card_workNonBasicVar;
384
+
385
+ /// Number of non basic variables (structural or slack) at their
386
+ /// upper bound in the current lp solution.
387
+ int card_nonBasicAtUpper;
388
+
389
+ /// Number of non basic variables (structural or slack) at their
390
+ /// lower bound in the current lp solution.
391
+ int card_nonBasicAtLower;
392
+
393
+ /// Characteristic vector for integer basic structural variables
394
+ int *cv_intBasicVar;
395
+
396
+ /// Characteristic vector for integer basic structural variables
397
+ /// with non integer value in the current lp solution.
398
+ int *cv_intBasicVar_frac;
399
+
400
+ /// Characteristic vector for rows of the tableau selected for reduction
401
+ /// with non integer value in the current lp solution
402
+ int *cv_fracRowsTab;
403
+
404
+ /// List of integer structural basic variables
405
+ /// (in order of pivot in selected rows for cut generation).
406
+ int *intBasicVar;
407
+
408
+ /// List of integer structural basic variables with fractional value
409
+ /// (in order of pivot in selected rows for cut generation).
410
+ int *intBasicVar_frac;
411
+
412
+ /// List of integer structural non basic variables.
413
+ int *intNonBasicVar;
414
+
415
+ /// List of continuous non basic variables (structural or slack).
416
+ // slacks are considered continuous (no harm if this is not the case).
417
+ int *contNonBasicVar;
418
+
419
+ /// List of non basic variables (structural or slack) at their
420
+ /// upper bound.
421
+ int *nonBasicAtUpper;
422
+
423
+ /// List of non basic variables (structural or slack) at their lower
424
+ /// bound.
425
+ int *nonBasicAtLower;
426
+
427
+ /// Number of rows in the reduced tableau (= card_intBasicVar).
428
+ int mTab;
429
+
430
+ /// Number of columns in the reduced tableau (= card_contNonBasicVar)
431
+ int nTab;
432
+
433
+ /// Tableau of multipliers used to alter the rows used in generation.
434
+ /// Dimensions: mTab by mTab. Initially, pi_mat is the identity matrix.
435
+ int **pi_mat;
436
+
437
+ /// Simplex tableau for continuous non basic variables (structural or slack).
438
+ /// Only rows used for generation.
439
+ /// Dimensions: mTab by card_contNonBasicVar.
440
+ double **contNonBasicTab;
441
+
442
+ /// Current tableau for continuous non basic variables (structural or slack).
443
+ /// Only columns used for coefficient reduction.
444
+ /// Dimensions: mTab by card_workNonBasicVar.
445
+ double **workNonBasicTab;
446
+
447
+ /// Simplex tableau for integer non basic structural variables.
448
+ /// Only rows used for generation.
449
+ // Dimensions: mTab by card_intNonBasicVar.
450
+ double **intNonBasicTab;
451
+
452
+ /// Right hand side of the tableau.
453
+ /// Only rows used for generation.
454
+ double *rhsTab;
455
+
456
+ /// Norm of rows in workNonBasicTab; needed for faster computations
457
+ double *norm;
458
+
459
+ /// Characteristic vectors of structural integer variables or continuous
460
+ /// variables currently fixed to integer values.
461
+ int *is_integer;
462
+
463
+ /// Pointer on solver. Reset by each call to generateCuts().
464
+ OsiSolverInterface *solver;
465
+
466
+ /// Pointer on point to separate. Reset by each call to generateCuts().
467
+ const double *xlp;
468
+
469
+ /// Pointer on row activity. Reset by each call to generateCuts().
470
+ const double *rowActivity;
471
+
472
+ /// Pointer on matrix of coefficient ordered by rows.
473
+ /// Reset by each call to generateCuts().
474
+ const CoinPackedMatrix *byRow;
475
+
476
+ /// Time at which cut computations began.
477
+ /// Reset by each call to generateCuts().
478
+ double startTime;
479
+
480
+ //@}
481
+ };
482
+
483
+ //#############################################################################
484
+ /** A function that tests some of the methods in the CglRedSplit2
485
+ class. The only reason for it not to be a member method is that
486
+ this way it doesn't have to be compiled into the library. And
487
+ that's a gain, because the library should be compiled with
488
+ optimization on, but this method should be compiled with
489
+ debugging. */
490
+ void CglRedSplit2UnitTest(const OsiSolverInterface * siP,
491
+ const std::string mpdDir );
492
+
493
+
494
+ #endif