ruby-cbc 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/README.md +203 -0
- data/Rakefile +40 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/ext/ruby-cbc/cbc.i +15 -0
- data/ext/ruby-cbc/cbc_wrap.c +4618 -0
- data/ext/ruby-cbc/extconf.rb +60 -0
- data/ext/ruby-cbc/install/bin/cbc +0 -0
- data/ext/ruby-cbc/install/bin/clp +0 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchActual.hpp +24 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchAllDifferent.hpp +62 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchBase.hpp +78 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchCut.hpp +183 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchDecision.hpp +129 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchDefaultDecision.hpp +100 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchDynamic.hpp +206 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchLotsize.hpp +242 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchToFixLots.hpp +94 -0
- data/ext/ruby-cbc/install/include/coin/CbcBranchingObject.hpp +236 -0
- data/ext/ruby-cbc/install/include/coin/CbcClique.hpp +303 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompare.hpp +39 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareActual.hpp +14 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareBase.hpp +142 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareDefault.hpp +120 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareDepth.hpp +47 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareEstimate.hpp +48 -0
- data/ext/ruby-cbc/install/include/coin/CbcCompareObjective.hpp +49 -0
- data/ext/ruby-cbc/install/include/coin/CbcConfig.h +14 -0
- data/ext/ruby-cbc/install/include/coin/CbcConsequence.hpp +49 -0
- data/ext/ruby-cbc/install/include/coin/CbcCountRowCut.hpp +168 -0
- data/ext/ruby-cbc/install/include/coin/CbcCutGenerator.hpp +482 -0
- data/ext/ruby-cbc/install/include/coin/CbcCutModifier.hpp +57 -0
- data/ext/ruby-cbc/install/include/coin/CbcCutSubsetModifier.hpp +66 -0
- data/ext/ruby-cbc/install/include/coin/CbcDummyBranchingObject.hpp +83 -0
- data/ext/ruby-cbc/install/include/coin/CbcEventHandler.hpp +245 -0
- data/ext/ruby-cbc/install/include/coin/CbcFathom.hpp +137 -0
- data/ext/ruby-cbc/install/include/coin/CbcFathomDynamicProgramming.hpp +169 -0
- data/ext/ruby-cbc/install/include/coin/CbcFeasibilityBase.hpp +56 -0
- data/ext/ruby-cbc/install/include/coin/CbcFixVariable.hpp +67 -0
- data/ext/ruby-cbc/install/include/coin/CbcFollowOn.hpp +207 -0
- data/ext/ruby-cbc/install/include/coin/CbcFullNodeInfo.hpp +161 -0
- data/ext/ruby-cbc/install/include/coin/CbcGeneral.hpp +60 -0
- data/ext/ruby-cbc/install/include/coin/CbcGeneralDepth.hpp +279 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristic.hpp +682 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDINS.hpp +96 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDW.hpp +309 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDive.hpp +192 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveCoefficient.hpp +52 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveFractional.hpp +52 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveGuided.hpp +55 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveLineSearch.hpp +52 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDivePseudoCost.hpp +60 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicDiveVectorLength.hpp +52 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicFPump.hpp +340 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicGreedy.hpp +280 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicLocal.hpp +271 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicPivotAndFix.hpp +58 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicRENS.hpp +77 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicRINS.hpp +102 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicRandRound.hpp +58 -0
- data/ext/ruby-cbc/install/include/coin/CbcHeuristicVND.hpp +94 -0
- data/ext/ruby-cbc/install/include/coin/CbcLinked.hpp +1406 -0
- data/ext/ruby-cbc/install/include/coin/CbcMessage.hpp +94 -0
- data/ext/ruby-cbc/install/include/coin/CbcMipStartIO.hpp +26 -0
- data/ext/ruby-cbc/install/include/coin/CbcModel.hpp +2952 -0
- data/ext/ruby-cbc/install/include/coin/CbcNWay.hpp +166 -0
- data/ext/ruby-cbc/install/include/coin/CbcNode.hpp +351 -0
- data/ext/ruby-cbc/install/include/coin/CbcNodeInfo.hpp +349 -0
- data/ext/ruby-cbc/install/include/coin/CbcObject.hpp +272 -0
- data/ext/ruby-cbc/install/include/coin/CbcObjectUpdateData.hpp +64 -0
- data/ext/ruby-cbc/install/include/coin/CbcOrClpParam.cpp +4134 -0
- data/ext/ruby-cbc/install/include/coin/CbcOrClpParam.hpp +532 -0
- data/ext/ruby-cbc/install/include/coin/CbcParam.hpp +324 -0
- data/ext/ruby-cbc/install/include/coin/CbcPartialNodeInfo.hpp +110 -0
- data/ext/ruby-cbc/install/include/coin/CbcSOS.hpp +279 -0
- data/ext/ruby-cbc/install/include/coin/CbcSimpleInteger.hpp +286 -0
- data/ext/ruby-cbc/install/include/coin/CbcSimpleIntegerDynamicPseudoCost.hpp +564 -0
- data/ext/ruby-cbc/install/include/coin/CbcSimpleIntegerPseudoCost.hpp +114 -0
- data/ext/ruby-cbc/install/include/coin/CbcSolver.hpp +447 -0
- data/ext/ruby-cbc/install/include/coin/CbcStrategy.hpp +258 -0
- data/ext/ruby-cbc/install/include/coin/CbcSubProblem.hpp +83 -0
- data/ext/ruby-cbc/install/include/coin/CbcTree.hpp +490 -0
- data/ext/ruby-cbc/install/include/coin/CbcTreeLocal.hpp +372 -0
- data/ext/ruby-cbc/install/include/coin/Cbc_C_Interface.h +381 -0
- data/ext/ruby-cbc/install/include/coin/Cgl012cut.hpp +464 -0
- data/ext/ruby-cbc/install/include/coin/CglAllDifferent.hpp +115 -0
- data/ext/ruby-cbc/install/include/coin/CglClique.hpp +308 -0
- data/ext/ruby-cbc/install/include/coin/CglConfig.h +19 -0
- data/ext/ruby-cbc/install/include/coin/CglCutGenerator.hpp +121 -0
- data/ext/ruby-cbc/install/include/coin/CglDuplicateRow.hpp +189 -0
- data/ext/ruby-cbc/install/include/coin/CglFlowCover.hpp +371 -0
- data/ext/ruby-cbc/install/include/coin/CglGMI.hpp +364 -0
- data/ext/ruby-cbc/install/include/coin/CglGMIParam.hpp +313 -0
- data/ext/ruby-cbc/install/include/coin/CglGomory.hpp +204 -0
- data/ext/ruby-cbc/install/include/coin/CglKnapsackCover.hpp +310 -0
- data/ext/ruby-cbc/install/include/coin/CglLandP.hpp +306 -0
- data/ext/ruby-cbc/install/include/coin/CglLandPValidator.hpp +130 -0
- data/ext/ruby-cbc/install/include/coin/CglLiftAndProject.hpp +104 -0
- data/ext/ruby-cbc/install/include/coin/CglMessage.hpp +50 -0
- data/ext/ruby-cbc/install/include/coin/CglMixedIntegerRounding.hpp +429 -0
- data/ext/ruby-cbc/install/include/coin/CglMixedIntegerRounding2.hpp +427 -0
- data/ext/ruby-cbc/install/include/coin/CglOddHole.hpp +160 -0
- data/ext/ruby-cbc/install/include/coin/CglParam.hpp +93 -0
- data/ext/ruby-cbc/install/include/coin/CglPreProcess.hpp +492 -0
- data/ext/ruby-cbc/install/include/coin/CglProbing.hpp +543 -0
- data/ext/ruby-cbc/install/include/coin/CglRedSplit.hpp +448 -0
- data/ext/ruby-cbc/install/include/coin/CglRedSplit2.hpp +494 -0
- data/ext/ruby-cbc/install/include/coin/CglRedSplit2Param.hpp +495 -0
- data/ext/ruby-cbc/install/include/coin/CglRedSplitParam.hpp +272 -0
- data/ext/ruby-cbc/install/include/coin/CglResidualCapacity.hpp +240 -0
- data/ext/ruby-cbc/install/include/coin/CglSimpleRounding.hpp +174 -0
- data/ext/ruby-cbc/install/include/coin/CglStored.hpp +125 -0
- data/ext/ruby-cbc/install/include/coin/CglTreeInfo.hpp +180 -0
- data/ext/ruby-cbc/install/include/coin/CglTwomir.hpp +565 -0
- data/ext/ruby-cbc/install/include/coin/CglZeroHalf.hpp +133 -0
- data/ext/ruby-cbc/install/include/coin/ClpAmplObjective.hpp +113 -0
- data/ext/ruby-cbc/install/include/coin/ClpCholeskyBase.hpp +294 -0
- data/ext/ruby-cbc/install/include/coin/ClpCholeskyDense.hpp +162 -0
- data/ext/ruby-cbc/install/include/coin/ClpConfig.h +17 -0
- data/ext/ruby-cbc/install/include/coin/ClpConstraint.hpp +125 -0
- data/ext/ruby-cbc/install/include/coin/ClpConstraintAmpl.hpp +108 -0
- data/ext/ruby-cbc/install/include/coin/ClpConstraintLinear.hpp +110 -0
- data/ext/ruby-cbc/install/include/coin/ClpConstraintQuadratic.hpp +119 -0
- data/ext/ruby-cbc/install/include/coin/ClpDualRowDantzig.hpp +71 -0
- data/ext/ruby-cbc/install/include/coin/ClpDualRowPivot.hpp +129 -0
- data/ext/ruby-cbc/install/include/coin/ClpDualRowSteepest.hpp +153 -0
- data/ext/ruby-cbc/install/include/coin/ClpDummyMatrix.hpp +183 -0
- data/ext/ruby-cbc/install/include/coin/ClpDynamicExampleMatrix.hpp +186 -0
- data/ext/ruby-cbc/install/include/coin/ClpDynamicMatrix.hpp +381 -0
- data/ext/ruby-cbc/install/include/coin/ClpEventHandler.hpp +187 -0
- data/ext/ruby-cbc/install/include/coin/ClpFactorization.hpp +432 -0
- data/ext/ruby-cbc/install/include/coin/ClpGubDynamicMatrix.hpp +247 -0
- data/ext/ruby-cbc/install/include/coin/ClpGubMatrix.hpp +358 -0
- data/ext/ruby-cbc/install/include/coin/ClpInterior.hpp +570 -0
- data/ext/ruby-cbc/install/include/coin/ClpLinearObjective.hpp +103 -0
- data/ext/ruby-cbc/install/include/coin/ClpMatrixBase.hpp +524 -0
- data/ext/ruby-cbc/install/include/coin/ClpMessage.hpp +131 -0
- data/ext/ruby-cbc/install/include/coin/ClpModel.hpp +1307 -0
- data/ext/ruby-cbc/install/include/coin/ClpNetworkMatrix.hpp +229 -0
- data/ext/ruby-cbc/install/include/coin/ClpNode.hpp +349 -0
- data/ext/ruby-cbc/install/include/coin/ClpNonLinearCost.hpp +401 -0
- data/ext/ruby-cbc/install/include/coin/ClpObjective.hpp +134 -0
- data/ext/ruby-cbc/install/include/coin/ClpPackedMatrix.hpp +638 -0
- data/ext/ruby-cbc/install/include/coin/ClpParameters.hpp +126 -0
- data/ext/ruby-cbc/install/include/coin/ClpPdcoBase.hpp +103 -0
- data/ext/ruby-cbc/install/include/coin/ClpPlusMinusOneMatrix.hpp +290 -0
- data/ext/ruby-cbc/install/include/coin/ClpPresolve.hpp +299 -0
- data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnDantzig.hpp +72 -0
- data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnPivot.hpp +155 -0
- data/ext/ruby-cbc/install/include/coin/ClpPrimalColumnSteepest.hpp +247 -0
- data/ext/ruby-cbc/install/include/coin/ClpQuadraticObjective.hpp +155 -0
- data/ext/ruby-cbc/install/include/coin/ClpSimplex.hpp +1797 -0
- data/ext/ruby-cbc/install/include/coin/ClpSimplexDual.hpp +300 -0
- data/ext/ruby-cbc/install/include/coin/ClpSimplexNonlinear.hpp +117 -0
- data/ext/ruby-cbc/install/include/coin/ClpSimplexOther.hpp +277 -0
- data/ext/ruby-cbc/install/include/coin/ClpSimplexPrimal.hpp +244 -0
- data/ext/ruby-cbc/install/include/coin/ClpSolve.hpp +446 -0
- data/ext/ruby-cbc/install/include/coin/Clp_C_Interface.h +525 -0
- data/ext/ruby-cbc/install/include/coin/CoinAlloc.hpp +176 -0
- data/ext/ruby-cbc/install/include/coin/CoinBuild.hpp +149 -0
- data/ext/ruby-cbc/install/include/coin/CoinDenseFactorization.hpp +419 -0
- data/ext/ruby-cbc/install/include/coin/CoinDenseVector.hpp +383 -0
- data/ext/ruby-cbc/install/include/coin/CoinDistance.hpp +48 -0
- data/ext/ruby-cbc/install/include/coin/CoinError.hpp +257 -0
- data/ext/ruby-cbc/install/include/coin/CoinFactorization.hpp +2044 -0
- data/ext/ruby-cbc/install/include/coin/CoinFileIO.hpp +166 -0
- data/ext/ruby-cbc/install/include/coin/CoinFinite.hpp +34 -0
- data/ext/ruby-cbc/install/include/coin/CoinFloatEqual.hpp +177 -0
- data/ext/ruby-cbc/install/include/coin/CoinHelperFunctions.hpp +1111 -0
- data/ext/ruby-cbc/install/include/coin/CoinIndexedVector.hpp +1164 -0
- data/ext/ruby-cbc/install/include/coin/CoinLpIO.hpp +805 -0
- data/ext/ruby-cbc/install/include/coin/CoinMessage.hpp +96 -0
- data/ext/ruby-cbc/install/include/coin/CoinMessageHandler.hpp +666 -0
- data/ext/ruby-cbc/install/include/coin/CoinModel.hpp +1054 -0
- data/ext/ruby-cbc/install/include/coin/CoinModelUseful.hpp +441 -0
- data/ext/ruby-cbc/install/include/coin/CoinMpsIO.hpp +1056 -0
- data/ext/ruby-cbc/install/include/coin/CoinOslFactorization.hpp +280 -0
- data/ext/ruby-cbc/install/include/coin/CoinPackedMatrix.hpp +947 -0
- data/ext/ruby-cbc/install/include/coin/CoinPackedVector.hpp +657 -0
- data/ext/ruby-cbc/install/include/coin/CoinPackedVectorBase.hpp +269 -0
- data/ext/ruby-cbc/install/include/coin/CoinParam.hpp +644 -0
- data/ext/ruby-cbc/install/include/coin/CoinPragma.hpp +26 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveDoubleton.hpp +73 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveDual.hpp +85 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveDupcol.hpp +226 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveEmpty.hpp +116 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveFixed.hpp +181 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveForcing.hpp +61 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveImpliedFree.hpp +60 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveIsolated.hpp +51 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveMatrix.hpp +1842 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveMonitor.hpp +105 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolvePsdebug.hpp +166 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveSingleton.hpp +112 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveSubst.hpp +101 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveTighten.hpp +55 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveTripleton.hpp +66 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveUseless.hpp +63 -0
- data/ext/ruby-cbc/install/include/coin/CoinPresolveZeros.hpp +60 -0
- data/ext/ruby-cbc/install/include/coin/CoinRational.hpp +44 -0
- data/ext/ruby-cbc/install/include/coin/CoinSearchTree.hpp +465 -0
- data/ext/ruby-cbc/install/include/coin/CoinShallowPackedVector.hpp +148 -0
- data/ext/ruby-cbc/install/include/coin/CoinSignal.hpp +117 -0
- data/ext/ruby-cbc/install/include/coin/CoinSimpFactorization.hpp +431 -0
- data/ext/ruby-cbc/install/include/coin/CoinSmartPtr.hpp +528 -0
- data/ext/ruby-cbc/install/include/coin/CoinSnapshot.hpp +476 -0
- data/ext/ruby-cbc/install/include/coin/CoinSort.hpp +678 -0
- data/ext/ruby-cbc/install/include/coin/CoinStructuredModel.hpp +247 -0
- data/ext/ruby-cbc/install/include/coin/CoinTime.hpp +310 -0
- data/ext/ruby-cbc/install/include/coin/CoinTypes.hpp +64 -0
- data/ext/ruby-cbc/install/include/coin/CoinUtility.hpp +19 -0
- data/ext/ruby-cbc/install/include/coin/CoinUtilsConfig.h +34 -0
- data/ext/ruby-cbc/install/include/coin/CoinWarmStart.hpp +58 -0
- data/ext/ruby-cbc/install/include/coin/CoinWarmStartBasis.hpp +456 -0
- data/ext/ruby-cbc/install/include/coin/CoinWarmStartDual.hpp +166 -0
- data/ext/ruby-cbc/install/include/coin/CoinWarmStartPrimalDual.hpp +211 -0
- data/ext/ruby-cbc/install/include/coin/CoinWarmStartVector.hpp +488 -0
- data/ext/ruby-cbc/install/include/coin/Coin_C_defines.h +115 -0
- data/ext/ruby-cbc/install/include/coin/Idiot.hpp +298 -0
- data/ext/ruby-cbc/install/include/coin/OsiAuxInfo.hpp +206 -0
- data/ext/ruby-cbc/install/include/coin/OsiBranchingObject.hpp +1005 -0
- data/ext/ruby-cbc/install/include/coin/OsiCbcSolverInterface.hpp +764 -0
- data/ext/ruby-cbc/install/include/coin/OsiChooseVariable.hpp +534 -0
- data/ext/ruby-cbc/install/include/coin/OsiClpSolverInterface.hpp +1509 -0
- data/ext/ruby-cbc/install/include/coin/OsiColCut.hpp +324 -0
- data/ext/ruby-cbc/install/include/coin/OsiCollections.hpp +35 -0
- data/ext/ruby-cbc/install/include/coin/OsiConfig.h +19 -0
- data/ext/ruby-cbc/install/include/coin/OsiCut.hpp +245 -0
- data/ext/ruby-cbc/install/include/coin/OsiCuts.hpp +474 -0
- data/ext/ruby-cbc/install/include/coin/OsiPresolve.hpp +252 -0
- data/ext/ruby-cbc/install/include/coin/OsiRowCut.hpp +331 -0
- data/ext/ruby-cbc/install/include/coin/OsiRowCutDebugger.hpp +187 -0
- data/ext/ruby-cbc/install/include/coin/OsiSolverBranch.hpp +152 -0
- data/ext/ruby-cbc/install/include/coin/OsiSolverInterface.hpp +2143 -0
- data/ext/ruby-cbc/install/include/coin/OsiSolverParameters.hpp +142 -0
- data/ext/ruby-cbc/install/include/coin/OsiUnitTests.hpp +374 -0
- data/ext/ruby-cbc/install/lib/libCbc.la +35 -0
- data/ext/ruby-cbc/install/lib/libCbc.so +0 -0
- data/ext/ruby-cbc/install/lib/libCbc.so.3 +0 -0
- data/ext/ruby-cbc/install/lib/libCbc.so.3.9.7 +0 -0
- data/ext/ruby-cbc/install/lib/libCbcSolver.la +35 -0
- data/ext/ruby-cbc/install/lib/libCbcSolver.so +0 -0
- data/ext/ruby-cbc/install/lib/libCbcSolver.so.3 +0 -0
- data/ext/ruby-cbc/install/lib/libCbcSolver.so.3.9.7 +0 -0
- data/ext/ruby-cbc/install/lib/libCgl.la +35 -0
- data/ext/ruby-cbc/install/lib/libCgl.so +0 -0
- data/ext/ruby-cbc/install/lib/libCgl.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libCgl.so.1.9.7 +0 -0
- data/ext/ruby-cbc/install/lib/libClp.la +35 -0
- data/ext/ruby-cbc/install/lib/libClp.so +0 -0
- data/ext/ruby-cbc/install/lib/libClp.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libClp.so.1.13.9 +0 -0
- data/ext/ruby-cbc/install/lib/libClpSolver.la +35 -0
- data/ext/ruby-cbc/install/lib/libClpSolver.so +0 -0
- data/ext/ruby-cbc/install/lib/libClpSolver.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libClpSolver.so.1.13.9 +0 -0
- data/ext/ruby-cbc/install/lib/libCoinUtils.la +35 -0
- data/ext/ruby-cbc/install/lib/libCoinUtils.so +0 -0
- data/ext/ruby-cbc/install/lib/libCoinUtils.so.3 +0 -0
- data/ext/ruby-cbc/install/lib/libCoinUtils.so.3.10.11 +0 -0
- data/ext/ruby-cbc/install/lib/libOsi.la +35 -0
- data/ext/ruby-cbc/install/lib/libOsi.so +0 -0
- data/ext/ruby-cbc/install/lib/libOsi.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libOsi.so.1.12.6 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCbc.la +35 -0
- data/ext/ruby-cbc/install/lib/libOsiCbc.so +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCbc.so.3 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCbc.so.3.9.7 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiClp.la +35 -0
- data/ext/ruby-cbc/install/lib/libOsiClp.so +0 -0
- data/ext/ruby-cbc/install/lib/libOsiClp.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiClp.so.1.13.9 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCommonTests.la +35 -0
- data/ext/ruby-cbc/install/lib/libOsiCommonTests.so +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCommonTests.so.1 +0 -0
- data/ext/ruby-cbc/install/lib/libOsiCommonTests.so.1.12.6 +0 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/cbc.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/cgl.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/clp.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/coindatamiplib3.pc +9 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/coindatasample.pc +9 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/coinutils.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/osi-cbc.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/osi-clp.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/osi-unittests.pc +12 -0
- data/ext/ruby-cbc/install/lib/pkgconfig/osi.pc +12 -0
- data/lib/ruby-cbc/ilp/constant.rb +44 -0
- data/lib/ruby-cbc/ilp/constraint.rb +32 -0
- data/lib/ruby-cbc/ilp/objective.rb +26 -0
- data/lib/ruby-cbc/ilp/term.rb +47 -0
- data/lib/ruby-cbc/ilp/term_array.rb +80 -0
- data/lib/ruby-cbc/ilp/var.rb +62 -0
- data/lib/ruby-cbc/model.rb +125 -0
- data/lib/ruby-cbc/problem.rb +170 -0
- data/lib/ruby-cbc/version.rb +3 -0
- data/lib/ruby-cbc.rb +21 -0
- data/ruby-cbc.gemspec +36 -0
- metadata +431 -0
@@ -0,0 +1,492 @@
|
|
1
|
+
// Copyright (C) 2005, International Business Machines
|
2
|
+
// Corporation and others. All Rights Reserved.
|
3
|
+
// This code is licensed under the terms of the Eclipse Public License (EPL).
|
4
|
+
|
5
|
+
#ifndef CglPreProcess_H
|
6
|
+
#define CglPreProcess_H
|
7
|
+
|
8
|
+
#include <string>
|
9
|
+
#include <vector>
|
10
|
+
|
11
|
+
#include "CoinMessageHandler.hpp"
|
12
|
+
#include "OsiSolverInterface.hpp"
|
13
|
+
#include "CglStored.hpp"
|
14
|
+
#include "OsiPresolve.hpp"
|
15
|
+
#include "CglCutGenerator.hpp"
|
16
|
+
|
17
|
+
//#############################################################################
|
18
|
+
|
19
|
+
/** Class for preProcessing and postProcessing.
|
20
|
+
|
21
|
+
While cuts can be added at any time in the tree, some cuts are actually just
|
22
|
+
stronger versions of existing constraints. In this case they can replace those
|
23
|
+
constraints rather than being added as new constraints. This is awkward in the
|
24
|
+
tree but reasonable at the root node.
|
25
|
+
|
26
|
+
This is a general process class which uses other cut generators to strengthen
|
27
|
+
constraints, establish that constraints are redundant, fix variables and
|
28
|
+
find relationships such as x + y == 1.
|
29
|
+
|
30
|
+
Presolve will also be done.
|
31
|
+
|
32
|
+
If row names existed they may be replaced by R0000000 etc
|
33
|
+
|
34
|
+
*/
|
35
|
+
|
36
|
+
class CglPreProcess {
|
37
|
+
|
38
|
+
public:
|
39
|
+
|
40
|
+
///@name Main methods
|
41
|
+
//@{
|
42
|
+
/** preProcess problem - returning new problem.
|
43
|
+
If makeEquality true then <= cliques converted to ==.
|
44
|
+
Presolve will be done numberPasses times.
|
45
|
+
|
46
|
+
Returns NULL if infeasible
|
47
|
+
|
48
|
+
This version uses default strategy. For more control copy and edit
|
49
|
+
code from this function i.e. call preProcessNonDefault
|
50
|
+
*/
|
51
|
+
OsiSolverInterface * preProcess(OsiSolverInterface & model,
|
52
|
+
bool makeEquality=false, int numberPasses=5);
|
53
|
+
/** preProcess problem - returning new problem.
|
54
|
+
If makeEquality true then <= cliques converted to ==.
|
55
|
+
Presolve will be done numberPasses times.
|
56
|
+
|
57
|
+
Returns NULL if infeasible
|
58
|
+
|
59
|
+
This version assumes user has added cut generators to CglPreProcess object
|
60
|
+
before calling it. As an example use coding in preProcess
|
61
|
+
If makeEquality is 1 add slacks to get cliques,
|
62
|
+
if 2 add slacks to get sos (but only if looks plausible) and keep sos info
|
63
|
+
*/
|
64
|
+
OsiSolverInterface * preProcessNonDefault(OsiSolverInterface & model,
|
65
|
+
int makeEquality=0, int numberPasses=5,
|
66
|
+
int tuning=0);
|
67
|
+
/// Creates solution in original model
|
68
|
+
void postProcess(OsiSolverInterface &model
|
69
|
+
,bool deleteStuff=true);
|
70
|
+
/** Tightens primal bounds to make dual and branch and cutfaster. Unless
|
71
|
+
fixed or integral, bounds are slightly looser than they could be.
|
72
|
+
Returns non-zero if problem infeasible
|
73
|
+
Fudge for branch and bound - put bounds on columns of factor *
|
74
|
+
largest value (at continuous) - should improve stability
|
75
|
+
in branch and bound on infeasible branches (0.0 is off)
|
76
|
+
*/
|
77
|
+
int tightenPrimalBounds(OsiSolverInterface & model,double factor=0.0);
|
78
|
+
/** Fix some of problem - returning new problem.
|
79
|
+
Uses reduced costs.
|
80
|
+
Optional signed character array
|
81
|
+
1 always keep, -1 always discard, 0 use djs
|
82
|
+
|
83
|
+
*/
|
84
|
+
OsiSolverInterface * someFixed(OsiSolverInterface & model,
|
85
|
+
double fractionToKeep=0.25,
|
86
|
+
bool fixContinuousAsWell=false,
|
87
|
+
char * keep=NULL) const;
|
88
|
+
/** Replace cliques by more maximal cliques
|
89
|
+
Returns NULL if rows not reduced by greater than cliquesNeeded*rows
|
90
|
+
|
91
|
+
*/
|
92
|
+
OsiSolverInterface * cliqueIt(OsiSolverInterface & model,
|
93
|
+
double cliquesNeeded=0.0) const;
|
94
|
+
/// If we have a cutoff - fix variables
|
95
|
+
int reducedCostFix(OsiSolverInterface & model);
|
96
|
+
//@}
|
97
|
+
|
98
|
+
//---------------------------------------------------------------------------
|
99
|
+
|
100
|
+
/**@name Parameter set/get methods
|
101
|
+
|
102
|
+
The set methods return true if the parameter was set to the given value,
|
103
|
+
false if the value of the parameter is out of range.
|
104
|
+
|
105
|
+
The get methods return the value of the parameter.
|
106
|
+
|
107
|
+
*/
|
108
|
+
//@{
|
109
|
+
/** Set cutoff bound on the objective function.
|
110
|
+
|
111
|
+
When using strict comparison, the bound is adjusted by a tolerance to
|
112
|
+
avoid accidentally cutting off the optimal solution.
|
113
|
+
*/
|
114
|
+
void setCutoff(double value) ;
|
115
|
+
|
116
|
+
/// Get the cutoff bound on the objective function - always as minimize
|
117
|
+
double getCutoff() const;
|
118
|
+
/// The original solver associated with this model.
|
119
|
+
inline OsiSolverInterface * originalModel() const
|
120
|
+
{ return originalModel_;}
|
121
|
+
/// Solver after making clique equalities (may == original)
|
122
|
+
inline OsiSolverInterface * startModel() const
|
123
|
+
{ return startModel_;}
|
124
|
+
/// Copies of solver at various stages after presolve
|
125
|
+
inline OsiSolverInterface * modelAtPass(int iPass) const
|
126
|
+
{ if (iPass>=0&&iPass<numberSolvers_) return model_[iPass]; else return NULL;}
|
127
|
+
/// Copies of solver at various stages after presolve after modifications
|
128
|
+
inline OsiSolverInterface * modifiedModel(int iPass) const
|
129
|
+
{ if (iPass>=0&&iPass<numberSolvers_) return modifiedModel_[iPass]; else return NULL;}
|
130
|
+
/// Matching presolve information
|
131
|
+
inline OsiPresolve * presolve(int iPass) const
|
132
|
+
{ if (iPass>=0&&iPass<numberSolvers_) return presolve_[iPass]; else return NULL;}
|
133
|
+
/** Return a pointer to the original columns (with possible clique slacks)
|
134
|
+
MUST be called before postProcess otherwise you just get 0,1,2.. */
|
135
|
+
const int * originalColumns();
|
136
|
+
/** Return a pointer to the original rows
|
137
|
+
MUST be called before postProcess otherwise you just get 0,1,2.. */
|
138
|
+
const int * originalRows();
|
139
|
+
/// Number of SOS if found
|
140
|
+
inline int numberSOS() const
|
141
|
+
{ return numberSOS_;}
|
142
|
+
/// Type of each SOS
|
143
|
+
inline const int * typeSOS() const
|
144
|
+
{ return typeSOS_;}
|
145
|
+
/// Start of each SOS
|
146
|
+
inline const int * startSOS() const
|
147
|
+
{ return startSOS_;}
|
148
|
+
/// Columns in SOS
|
149
|
+
inline const int * whichSOS() const
|
150
|
+
{ return whichSOS_;}
|
151
|
+
/// Weights for each SOS column
|
152
|
+
inline const double * weightSOS() const
|
153
|
+
{ return weightSOS_;}
|
154
|
+
/// Pass in prohibited columns
|
155
|
+
void passInProhibited(const char * prohibited,int numberColumns);
|
156
|
+
/// Updated prohibited columns
|
157
|
+
inline const char * prohibited()
|
158
|
+
{ return prohibited_;}
|
159
|
+
/// Number of iterations PreProcessing
|
160
|
+
inline int numberIterationsPre() const
|
161
|
+
{ return numberIterationsPre_;}
|
162
|
+
/// Number of iterations PostProcessing
|
163
|
+
inline int numberIterationsPost() const
|
164
|
+
{ return numberIterationsPost_;}
|
165
|
+
/** Pass in row types
|
166
|
+
0 normal
|
167
|
+
1 cut rows - will be dropped if remain in
|
168
|
+
At end of preprocess cut rows will be dropped
|
169
|
+
and put into cuts
|
170
|
+
*/
|
171
|
+
void passInRowTypes(const char * rowTypes,int numberRows);
|
172
|
+
/** Updated row types - may be NULL
|
173
|
+
Carried around and corresponds to existing rows
|
174
|
+
-1 added by preprocess e.g. x+y=1
|
175
|
+
0 normal
|
176
|
+
1 cut rows - can be dropped if wanted
|
177
|
+
*/
|
178
|
+
inline const char * rowTypes()
|
179
|
+
{ return rowType_;}
|
180
|
+
/// Return cuts from dropped rows
|
181
|
+
inline const CglStored & cuts() const
|
182
|
+
{ return cuts_;}
|
183
|
+
/// Return pointer to cuts from dropped rows
|
184
|
+
inline const CglStored * cutsPointer() const
|
185
|
+
{ return &cuts_;}
|
186
|
+
/// Update prohibited and rowType
|
187
|
+
void update(const OsiPresolve * pinfo,const OsiSolverInterface * solver);
|
188
|
+
/// Set options
|
189
|
+
inline void setOptions(int value)
|
190
|
+
{ options_=value;}
|
191
|
+
//@}
|
192
|
+
|
193
|
+
///@name Cut generator methods
|
194
|
+
//@{
|
195
|
+
/// Get the number of cut generators
|
196
|
+
inline int numberCutGenerators() const
|
197
|
+
{ return numberCutGenerators_;}
|
198
|
+
/// Get the list of cut generators
|
199
|
+
inline CglCutGenerator ** cutGenerators() const
|
200
|
+
{ return generator_;}
|
201
|
+
///Get the specified cut generator
|
202
|
+
inline CglCutGenerator * cutGenerator(int i) const
|
203
|
+
{ return generator_[i];}
|
204
|
+
/** Add one generator - up to user to delete generators.
|
205
|
+
*/
|
206
|
+
void addCutGenerator(CglCutGenerator * generator);
|
207
|
+
//@}
|
208
|
+
|
209
|
+
/**@name Setting/Accessing application data */
|
210
|
+
//@{
|
211
|
+
/** Set application data.
|
212
|
+
|
213
|
+
This is a pointer that the application can store into and
|
214
|
+
retrieve.
|
215
|
+
This field is available for the application to optionally
|
216
|
+
define and use.
|
217
|
+
*/
|
218
|
+
void setApplicationData (void * appData);
|
219
|
+
|
220
|
+
/// Get application data
|
221
|
+
void * getApplicationData() const;
|
222
|
+
//@}
|
223
|
+
|
224
|
+
//---------------------------------------------------------------------------
|
225
|
+
|
226
|
+
/**@name Message handling */
|
227
|
+
//@{
|
228
|
+
/// Pass in Message handler (not deleted at end)
|
229
|
+
void passInMessageHandler(CoinMessageHandler * handler);
|
230
|
+
/// Set language
|
231
|
+
void newLanguage(CoinMessages::Language language);
|
232
|
+
inline void setLanguage(CoinMessages::Language language)
|
233
|
+
{newLanguage(language);}
|
234
|
+
/// Return handler
|
235
|
+
inline CoinMessageHandler * messageHandler() const
|
236
|
+
{return handler_;}
|
237
|
+
/// Return messages
|
238
|
+
inline CoinMessages messages()
|
239
|
+
{return messages_;}
|
240
|
+
/// Return pointer to messages
|
241
|
+
inline CoinMessages * messagesPointer()
|
242
|
+
{return &messages_;}
|
243
|
+
//@}
|
244
|
+
//---------------------------------------------------------------------------
|
245
|
+
|
246
|
+
|
247
|
+
///@name Constructors and destructors etc
|
248
|
+
//@{
|
249
|
+
/// Constructor
|
250
|
+
CglPreProcess();
|
251
|
+
|
252
|
+
/// Copy constructor .
|
253
|
+
CglPreProcess(const CglPreProcess & rhs);
|
254
|
+
|
255
|
+
/// Assignment operator
|
256
|
+
CglPreProcess & operator=(const CglPreProcess& rhs);
|
257
|
+
|
258
|
+
/// Destructor
|
259
|
+
~CglPreProcess ();
|
260
|
+
|
261
|
+
/// Clears out as much as possible
|
262
|
+
void gutsOfDestructor();
|
263
|
+
//@}
|
264
|
+
private:
|
265
|
+
|
266
|
+
///@name private methods
|
267
|
+
//@{
|
268
|
+
/** Return model with useful modifications.
|
269
|
+
If constraints true then adds any x+y=1 or x-y=0 constraints
|
270
|
+
If NULL infeasible
|
271
|
+
*/
|
272
|
+
OsiSolverInterface * modified(OsiSolverInterface * model,
|
273
|
+
bool constraints,
|
274
|
+
int & numberChanges,
|
275
|
+
int iBigPass,
|
276
|
+
int numberPasses);
|
277
|
+
/// create original columns and rows
|
278
|
+
void createOriginalIndices();
|
279
|
+
/// Make continuous variables integer
|
280
|
+
void makeInteger();
|
281
|
+
//@}
|
282
|
+
|
283
|
+
//---------------------------------------------------------------------------
|
284
|
+
|
285
|
+
private:
|
286
|
+
///@name Private member data
|
287
|
+
//@{
|
288
|
+
|
289
|
+
/// The original solver associated with this model.
|
290
|
+
OsiSolverInterface * originalModel_;
|
291
|
+
/// Solver after making clique equalities (may == original)
|
292
|
+
OsiSolverInterface * startModel_;
|
293
|
+
/// Number of solvers at various stages
|
294
|
+
int numberSolvers_;
|
295
|
+
/// Copies of solver at various stages after presolve
|
296
|
+
OsiSolverInterface ** model_;
|
297
|
+
/// Copies of solver at various stages after presolve after modifications
|
298
|
+
OsiSolverInterface ** modifiedModel_;
|
299
|
+
/// Matching presolve information
|
300
|
+
OsiPresolve ** presolve_;
|
301
|
+
|
302
|
+
/// Message handler
|
303
|
+
CoinMessageHandler * handler_;
|
304
|
+
|
305
|
+
/** Flag to say if handler_ is the default handler.
|
306
|
+
|
307
|
+
The default handler is deleted when the model is deleted. Other
|
308
|
+
handlers (supplied by the client) will not be deleted.
|
309
|
+
*/
|
310
|
+
bool defaultHandler_;
|
311
|
+
|
312
|
+
/// Cgl messages
|
313
|
+
CoinMessages messages_;
|
314
|
+
|
315
|
+
/// Pointer to user-defined data structure
|
316
|
+
void * appData_;
|
317
|
+
/// Original column numbers
|
318
|
+
int * originalColumn_;
|
319
|
+
/// Original row numbers
|
320
|
+
int * originalRow_;
|
321
|
+
/// Number of cut generators
|
322
|
+
int numberCutGenerators_;
|
323
|
+
/// Cut generators
|
324
|
+
CglCutGenerator ** generator_;
|
325
|
+
/// Number of SOS if found
|
326
|
+
int numberSOS_;
|
327
|
+
/// Type of each SOS
|
328
|
+
int * typeSOS_;
|
329
|
+
/// Start of each SOS
|
330
|
+
int * startSOS_;
|
331
|
+
/// Columns in SOS
|
332
|
+
int * whichSOS_;
|
333
|
+
/// Weights for each SOS column
|
334
|
+
double * weightSOS_;
|
335
|
+
/// Number of columns in original prohibition set
|
336
|
+
int numberProhibited_;
|
337
|
+
/// Number of iterations done in PreProcessing
|
338
|
+
int numberIterationsPre_;
|
339
|
+
/// Number of iterations done in PostProcessing
|
340
|
+
int numberIterationsPost_;
|
341
|
+
/// Columns which should not be presolved e.g. SOS
|
342
|
+
char * prohibited_;
|
343
|
+
/// Number of rows in original row types
|
344
|
+
int numberRowType_;
|
345
|
+
/** Options
|
346
|
+
1 - original model had integer bounds before tightening
|
347
|
+
2 - don't do probing
|
348
|
+
4 - don't do duplicate rows
|
349
|
+
8 - don't do cliques
|
350
|
+
16 - some heavy probing options
|
351
|
+
64 - very heavy probing
|
352
|
+
*/
|
353
|
+
int options_;
|
354
|
+
/** Row types (may be NULL)
|
355
|
+
Carried around and corresponds to existing rows
|
356
|
+
-1 added by preprocess e.g. x+y=1
|
357
|
+
0 normal
|
358
|
+
1 cut rows - can be dropped if wanted
|
359
|
+
*/
|
360
|
+
char * rowType_;
|
361
|
+
/// Cuts from dropped rows
|
362
|
+
CglStored cuts_;
|
363
|
+
//@}
|
364
|
+
};
|
365
|
+
/// For Bron-Kerbosch
|
366
|
+
class CglBK {
|
367
|
+
|
368
|
+
public:
|
369
|
+
|
370
|
+
///@name Main methods
|
371
|
+
//@{
|
372
|
+
/// For recursive Bron-Kerbosch
|
373
|
+
void bronKerbosch();
|
374
|
+
/// Creates strengthened smaller model
|
375
|
+
OsiSolverInterface * newSolver(const OsiSolverInterface & model);
|
376
|
+
//@}
|
377
|
+
|
378
|
+
//---------------------------------------------------------------------------
|
379
|
+
|
380
|
+
/**@name Parameter set/get methods
|
381
|
+
|
382
|
+
The set methods return true if the parameter was set to the given value,
|
383
|
+
false if the value of the parameter is out of range.
|
384
|
+
|
385
|
+
The get methods return the value of the parameter.
|
386
|
+
|
387
|
+
*/
|
388
|
+
//@{
|
389
|
+
//@}
|
390
|
+
|
391
|
+
//---------------------------------------------------------------------------
|
392
|
+
|
393
|
+
|
394
|
+
///@name Constructors and destructors etc
|
395
|
+
//@{
|
396
|
+
/// Default constructor
|
397
|
+
CglBK();
|
398
|
+
|
399
|
+
/// Useful constructor
|
400
|
+
CglBK(const OsiSolverInterface & model, const char * rowType,
|
401
|
+
int numberElements);
|
402
|
+
|
403
|
+
/// Copy constructor .
|
404
|
+
CglBK(const CglBK & rhs);
|
405
|
+
|
406
|
+
/// Assignment operator
|
407
|
+
CglBK & operator=(const CglBK& rhs);
|
408
|
+
|
409
|
+
/// Destructor
|
410
|
+
~CglBK ();
|
411
|
+
|
412
|
+
//@}
|
413
|
+
|
414
|
+
//---------------------------------------------------------------------------
|
415
|
+
|
416
|
+
private:
|
417
|
+
///@name Private member data
|
418
|
+
//@{
|
419
|
+
/// Current candidates (created at each level)
|
420
|
+
int * candidates_;
|
421
|
+
/// Array to mark stuff
|
422
|
+
char * mark_;
|
423
|
+
/// Starts for graph (numberPossible+1)
|
424
|
+
int * start_;
|
425
|
+
/// Other column/node
|
426
|
+
int * otherColumn_;
|
427
|
+
/// Original row (in parallel with otherColumn_)
|
428
|
+
int * originalRow_;
|
429
|
+
/// How many times each original row dominated
|
430
|
+
int * dominated_;
|
431
|
+
/// Clique entries
|
432
|
+
CoinPackedMatrix * cliqueMatrix_;
|
433
|
+
/// points to row types
|
434
|
+
const char * rowType_;
|
435
|
+
/// Number of original columns
|
436
|
+
int numberColumns_;
|
437
|
+
/// Number of original rows
|
438
|
+
int numberRows_;
|
439
|
+
/// Number possible
|
440
|
+
int numberPossible_;
|
441
|
+
/// Current number of candidates
|
442
|
+
int numberCandidates_;
|
443
|
+
/// First not (stored backwards from numberPossible_)
|
444
|
+
int firstNot_;
|
445
|
+
/// Current number in clique
|
446
|
+
int numberIn_;
|
447
|
+
/// For acceleration
|
448
|
+
int left_;
|
449
|
+
int lastColumn_;
|
450
|
+
//@}
|
451
|
+
};
|
452
|
+
/**
|
453
|
+
Only store unique row cuts
|
454
|
+
*/
|
455
|
+
// for hashing
|
456
|
+
typedef struct {
|
457
|
+
int index, next;
|
458
|
+
} CglHashLink;
|
459
|
+
class OsiRowCut;
|
460
|
+
class CglUniqueRowCuts {
|
461
|
+
public:
|
462
|
+
|
463
|
+
CglUniqueRowCuts(int initialMaxSize=0, int hashMultiplier=4 );
|
464
|
+
~CglUniqueRowCuts();
|
465
|
+
CglUniqueRowCuts(const CglUniqueRowCuts& rhs);
|
466
|
+
CglUniqueRowCuts& operator=(const CglUniqueRowCuts& rhs);
|
467
|
+
inline OsiRowCut * cut(int sequence) const
|
468
|
+
{ return rowCut_[sequence];}
|
469
|
+
inline int numberCuts() const
|
470
|
+
{ return numberCuts_;}
|
471
|
+
inline int sizeRowCuts() const
|
472
|
+
{ return numberCuts_;}
|
473
|
+
inline OsiRowCut * rowCutPtr(int sequence)
|
474
|
+
{ return rowCut_[sequence];}
|
475
|
+
void eraseRowCut(int sequence);
|
476
|
+
// insert cut
|
477
|
+
inline void insert(const OsiRowCut & cut)
|
478
|
+
{ insertIfNotDuplicate(cut);}
|
479
|
+
// Return 0 if added, 1 if not
|
480
|
+
int insertIfNotDuplicate(const OsiRowCut & cut);
|
481
|
+
// Add in cuts as normal cuts (and delete)
|
482
|
+
void addCuts(OsiCuts & cs);
|
483
|
+
private:
|
484
|
+
OsiRowCut ** rowCut_;
|
485
|
+
/// Hash table
|
486
|
+
CglHashLink *hash_;
|
487
|
+
int size_;
|
488
|
+
int hashMultiplier_;
|
489
|
+
int numberCuts_;
|
490
|
+
int lastHash_;
|
491
|
+
};
|
492
|
+
#endif
|