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,371 @@
|
|
1
|
+
// $Id: CglFlowCover.hpp 1119 2013-04-06 20:24:18Z stefan $
|
2
|
+
//-----------------------------------------------------------------------------
|
3
|
+
// name: Cgl Lifted Simple Generalized Flow Cover Cut Generator
|
4
|
+
// author: Yan Xu email: yan.xu@sas.com
|
5
|
+
// Jeff Linderoth email: jtl3@lehigh.edu
|
6
|
+
// Martin Savelsberg email: martin.savelsbergh@isye.gatech.edu
|
7
|
+
// date: 05/01/2003
|
8
|
+
// comments: please scan this file for '???' and read the comments
|
9
|
+
//-----------------------------------------------------------------------------
|
10
|
+
// Copyright (C) 2003, Yan Xu, Jeff Linderoth, Martin Savelsberg and others.
|
11
|
+
// All Rights Reserved.
|
12
|
+
// This code is published under the Eclipse Public License.
|
13
|
+
|
14
|
+
#ifndef CglFlowCover_H
|
15
|
+
#define CglFlowCover_H
|
16
|
+
|
17
|
+
#include <iostream>
|
18
|
+
|
19
|
+
#include "CoinError.hpp"
|
20
|
+
|
21
|
+
#include "CglCutGenerator.hpp"
|
22
|
+
|
23
|
+
//=============================================================================
|
24
|
+
|
25
|
+
//=============================================================================
|
26
|
+
|
27
|
+
/** This enumerative constant describes the various col types.*/
|
28
|
+
enum CglFlowColType {
|
29
|
+
/** The column(variable) is a negative binary variable.*/
|
30
|
+
CGLFLOW_COL_BINNEG = -2,
|
31
|
+
/** The column is a negative continous variable.*/
|
32
|
+
CGLFLOW_COL_CONTNEG,
|
33
|
+
/** The column is a positive continous variable.*/
|
34
|
+
CGLFLOW_COL_CONTPOS = 1,
|
35
|
+
/** The column is a positive binary variable.*/
|
36
|
+
CGLFLOW_COL_BINPOS
|
37
|
+
};
|
38
|
+
|
39
|
+
enum CglFlowColStatus{
|
40
|
+
};
|
41
|
+
|
42
|
+
/** This enumerative constant describes the various stati of vars in
|
43
|
+
a cut or not.*/
|
44
|
+
enum CglFlowColCut{
|
45
|
+
/** The column is NOT in cover.*/
|
46
|
+
CGLFLOW_COL_OUTCUT = 0,
|
47
|
+
/** The column is in cover now. */
|
48
|
+
CGLFLOW_COL_INCUT,
|
49
|
+
/** The column is decided to be in cover. */
|
50
|
+
CGLFLOW_COL_INCUTDONE,
|
51
|
+
/** The column is in L-. */
|
52
|
+
CGLFLOW_COL_INLMIN,
|
53
|
+
/** The column is decided to be in L-. */
|
54
|
+
CGLFLOW_COL_INLMINDONE,
|
55
|
+
/** The column is in L--.*/
|
56
|
+
CGLFLOW_COL_INLMINMIN,
|
57
|
+
/** This enumerative constant describes the various stati of vars in
|
58
|
+
determining the cover.*/
|
59
|
+
/** The column is a prime candidate. */
|
60
|
+
CGLFLOW_COL_PRIME,
|
61
|
+
/** The column is a secondary candidate. */
|
62
|
+
CGLFLOW_COL_SECONDARY
|
63
|
+
};
|
64
|
+
|
65
|
+
/** This enumerative constant describes the various row types.*/
|
66
|
+
enum CglFlowRowType {
|
67
|
+
/** The row type of this row is NOT defined yet.*/
|
68
|
+
CGLFLOW_ROW_UNDEFINED,
|
69
|
+
/** After the row is flipped to 'L', the row has exactly two variables:
|
70
|
+
one is negative binary and the other is continous, and the RHS
|
71
|
+
is zero.*/
|
72
|
+
CGLFLOW_ROW_VARUB,
|
73
|
+
/** After the row is flipped to 'L', the row has exactlytwo variables:
|
74
|
+
one is positive binary and the other is continous, and the RHS
|
75
|
+
is zero.*/
|
76
|
+
CGLFLOW_ROW_VARLB,
|
77
|
+
/** The row sense is 'E', the row has exactly two variables:
|
78
|
+
one is binary and the other is a continous, and the RHS is zero.*/
|
79
|
+
CGLFLOW_ROW_VAREQ,
|
80
|
+
/** Rows can not be classfied into other types and the row sense
|
81
|
+
is NOT 'E'.*/
|
82
|
+
CGLFLOW_ROW_MIXUB,
|
83
|
+
/** Rows can not be classfied into other types and the row sense is 'E'.*/
|
84
|
+
CGLFLOW_ROW_MIXEQ,
|
85
|
+
/** All variables are NOT binary and the row sense is NOT 'E'. */
|
86
|
+
CGLFLOW_ROW_NOBINUB,
|
87
|
+
/** All variables are NOT binary and the row sense is 'E'. */
|
88
|
+
CGLFLOW_ROW_NOBINEQ,
|
89
|
+
/** The row has one binary and 2 or more other types of variables and
|
90
|
+
the row sense is NOT 'E'. */
|
91
|
+
CGLFLOW_ROW_SUMVARUB,
|
92
|
+
/** The row has one binary and 2 or more other types of variables and
|
93
|
+
the row sense is 'E'. */
|
94
|
+
CGLFLOW_ROW_SUMVAREQ,
|
95
|
+
/** All variables are binary. */
|
96
|
+
CGLFLOW_ROW_UNINTERSTED
|
97
|
+
};
|
98
|
+
|
99
|
+
//=============================================================================
|
100
|
+
|
101
|
+
/** Variable upper bound class. */
|
102
|
+
class CglFlowVUB
|
103
|
+
{
|
104
|
+
protected:
|
105
|
+
int varInd_; /** The index of the associated 0-1 variable.*/
|
106
|
+
double upper_; /** The Value of the associated upper bound.*/
|
107
|
+
|
108
|
+
public:
|
109
|
+
CglFlowVUB() : varInd_(-1), upper_(-1) {}
|
110
|
+
|
111
|
+
CglFlowVUB(const CglFlowVUB& source) {
|
112
|
+
varInd_= source.varInd_;
|
113
|
+
upper_ = source.upper_;
|
114
|
+
}
|
115
|
+
|
116
|
+
CglFlowVUB& operator=(const CglFlowVUB& rhs) {
|
117
|
+
if (this == &rhs)
|
118
|
+
return *this;
|
119
|
+
varInd_= rhs.varInd_;
|
120
|
+
upper_ = rhs.upper_;
|
121
|
+
return *this;
|
122
|
+
}
|
123
|
+
|
124
|
+
/**@name Query and set functions for associated 0-1 variable index
|
125
|
+
and value.
|
126
|
+
*/
|
127
|
+
//@{
|
128
|
+
inline int getVar() const { return varInd_; }
|
129
|
+
inline double getVal() const { return upper_; }
|
130
|
+
inline void setVar(const int v) { varInd_ = v; }
|
131
|
+
inline void setVal(const double v) { upper_ = v; }
|
132
|
+
//@}
|
133
|
+
};
|
134
|
+
|
135
|
+
//=============================================================================
|
136
|
+
|
137
|
+
/** Variable lower bound class, which is the same as vub. */
|
138
|
+
typedef CglFlowVUB CglFlowVLB;
|
139
|
+
|
140
|
+
/** Overloaded operator<< for printing VUB and VLB.*/
|
141
|
+
std::ostream& operator<<( std::ostream& os, const CglFlowVUB &v );
|
142
|
+
|
143
|
+
//=============================================================================
|
144
|
+
|
145
|
+
/**
|
146
|
+
* Lifed Simple Generalized Flow Cover Cut Generator Class.
|
147
|
+
*/
|
148
|
+
class CglFlowCover : public CglCutGenerator {
|
149
|
+
friend void CglFlowCoverUnitTest(const OsiSolverInterface * siP,
|
150
|
+
const std::string mpdDir );
|
151
|
+
|
152
|
+
public:
|
153
|
+
|
154
|
+
/**
|
155
|
+
* Do the following tasks:
|
156
|
+
* <ul>
|
157
|
+
* <li> classify row types
|
158
|
+
* <li> indentify vubs and vlbs
|
159
|
+
* </ul>
|
160
|
+
* This function is called by
|
161
|
+
* <CODE>generateCuts(const OsiSolverInterface & si, OsiCuts & cs)</CODE>.
|
162
|
+
*/
|
163
|
+
void flowPreprocess(const OsiSolverInterface& si);
|
164
|
+
|
165
|
+
/**@name Generate Cuts */
|
166
|
+
//@{
|
167
|
+
/** Generate Lifed Simple Generalized flow cover cuts for the model data
|
168
|
+
contained in si. The generated cuts are inserted into and returned
|
169
|
+
in the collection of cuts cs.
|
170
|
+
*/
|
171
|
+
virtual void generateCuts(const OsiSolverInterface & si, OsiCuts & cs,
|
172
|
+
const CglTreeInfo info = CglTreeInfo());
|
173
|
+
//@}
|
174
|
+
|
175
|
+
/**@name Functions to query and set maximum number of cuts can be
|
176
|
+
generated. */
|
177
|
+
//@{
|
178
|
+
inline int getMaxNumCuts() const { return maxNumCuts_; }
|
179
|
+
inline void setMaxNumCuts(int mc) { maxNumCuts_ = mc; }
|
180
|
+
//@}
|
181
|
+
|
182
|
+
/**@name Functions to query and set the number of cuts have been
|
183
|
+
generated. */
|
184
|
+
//@{
|
185
|
+
static int getNumFlowCuts() { return numFlowCuts_; }
|
186
|
+
static void setNumFlowCuts(int fc) { numFlowCuts_ = fc; }
|
187
|
+
static void incNumFlowCuts(int fc = 1) { numFlowCuts_ += fc; }
|
188
|
+
//@}
|
189
|
+
|
190
|
+
//-------------------------------------------------------------------------
|
191
|
+
/**@name Constructors and destructors */
|
192
|
+
//@{
|
193
|
+
/// Default constructor
|
194
|
+
CglFlowCover ();
|
195
|
+
|
196
|
+
/// Copy constructor
|
197
|
+
CglFlowCover (
|
198
|
+
const CglFlowCover &);
|
199
|
+
|
200
|
+
/// Clone
|
201
|
+
virtual CglCutGenerator * clone() const;
|
202
|
+
|
203
|
+
/// Assignment operator
|
204
|
+
CglFlowCover &
|
205
|
+
operator=(
|
206
|
+
const CglFlowCover& rhs);
|
207
|
+
|
208
|
+
/// Destructor
|
209
|
+
virtual
|
210
|
+
~CglFlowCover ();
|
211
|
+
/// Create C++ lines to get to current state
|
212
|
+
virtual std::string generateCpp( FILE * fp);
|
213
|
+
//@}
|
214
|
+
|
215
|
+
private:
|
216
|
+
//-------------------------------------------------------------------------
|
217
|
+
// Private member functions
|
218
|
+
|
219
|
+
/** Based a given row, a LP solution and other model data, this function
|
220
|
+
tries to generate a violated lifted simple generalized flow cover.
|
221
|
+
*/
|
222
|
+
bool generateOneFlowCut( const OsiSolverInterface & si,
|
223
|
+
const int rowLen,
|
224
|
+
int* ind,
|
225
|
+
double* coef,
|
226
|
+
char sense,
|
227
|
+
double rhs,
|
228
|
+
OsiRowCut& flowCut,
|
229
|
+
double& violation );
|
230
|
+
|
231
|
+
|
232
|
+
/** Transform a row from ">=" to "<=", and vice versa. */
|
233
|
+
void flipRow(int rowLen, double* coef, double& rhs) const;
|
234
|
+
|
235
|
+
/** Transform a row from ">=" to "<=", and vice versa. Have 'sense'. */
|
236
|
+
void flipRow(int rowLen, double* coef, char& sen, double& rhs) const;
|
237
|
+
|
238
|
+
/** Determine the type of a given row. */
|
239
|
+
CglFlowRowType determineOneRowType(const OsiSolverInterface& si,
|
240
|
+
int rowLen, int* ind,
|
241
|
+
double* coef, char sen,
|
242
|
+
double rhs) const;
|
243
|
+
/** Lift functions */
|
244
|
+
void liftMinus(double &movement, /* Output */
|
245
|
+
int t,
|
246
|
+
int r,
|
247
|
+
double z,
|
248
|
+
double dPrimePrime,
|
249
|
+
double lambda,
|
250
|
+
double ml,
|
251
|
+
double *M,
|
252
|
+
double *rho) const;
|
253
|
+
|
254
|
+
bool liftPlus(double &alpha,
|
255
|
+
double &beta,
|
256
|
+
int r,
|
257
|
+
double m_j,
|
258
|
+
double lambda,
|
259
|
+
double y_j,
|
260
|
+
double x_j,
|
261
|
+
double dPrimePrime,
|
262
|
+
double *M) const;
|
263
|
+
|
264
|
+
|
265
|
+
//-------------------------------------------------------------------------
|
266
|
+
//**@name Query and set the row type of a givne row. */
|
267
|
+
//@{
|
268
|
+
inline const CglFlowRowType* getRowTypes() const
|
269
|
+
{ return rowTypes_; }
|
270
|
+
inline CglFlowRowType getRowType(const int i) const
|
271
|
+
{ return rowTypes_[i]; }
|
272
|
+
/** Set rowtypes, take over the ownership. */
|
273
|
+
inline void setRowTypes(CglFlowRowType* rt)
|
274
|
+
{ rowTypes_ = rt; rt = 0; }
|
275
|
+
inline void setRowTypes(const CglFlowRowType rt, const int i) {
|
276
|
+
if (rowTypes_ != 0)
|
277
|
+
rowTypes_[i] = rt;
|
278
|
+
else {
|
279
|
+
std::cout << "ERROR: Should allocate memory for rowType_ before "
|
280
|
+
<< "using it " << std::endl;
|
281
|
+
throw CoinError("Forgot to allocate memory for rowType_",
|
282
|
+
"setRowType", "CglFlowCover");
|
283
|
+
}
|
284
|
+
}
|
285
|
+
//@}
|
286
|
+
|
287
|
+
//-------------------------------------------------------------------------
|
288
|
+
//**@name Query and set vubs. */
|
289
|
+
//@{
|
290
|
+
inline const CglFlowVUB* getVubs() const { return vubs_; }
|
291
|
+
inline const CglFlowVUB& getVubs(int i) const { return vubs_[i]; }
|
292
|
+
/** Set CglFlowVUBs,take over the ownership. */
|
293
|
+
inline void setVubs(CglFlowVUB* vubs) { vubs_ = vubs; vubs = 0; }
|
294
|
+
inline void setVubs(const CglFlowVUB& vub, int i) {
|
295
|
+
if (vubs_ != 0)
|
296
|
+
vubs_[i] = vub;
|
297
|
+
else {
|
298
|
+
std::cout << "ERROR: Should allocate memory for vubs_ before "
|
299
|
+
<< "using it " << std::endl;
|
300
|
+
throw CoinError("Forgot to allocate memory for vubs_", "setVubs",
|
301
|
+
"CglFlowCover");
|
302
|
+
}
|
303
|
+
}
|
304
|
+
inline void printVubs(std::ostream& os) const {
|
305
|
+
for (int i = 0; i < numCols_; ++i) {
|
306
|
+
os << "ix: " << i << ", " << vubs_[i];
|
307
|
+
}
|
308
|
+
}
|
309
|
+
//@}
|
310
|
+
|
311
|
+
//-------------------------------------------------------------------------
|
312
|
+
//**@name Query and set vlbs. */
|
313
|
+
//@{
|
314
|
+
inline const CglFlowVLB* getVlbs() const { return vlbs_; }
|
315
|
+
inline const CglFlowVLB& getVlbs(int i) const { return vlbs_[i]; }
|
316
|
+
/** Set CglFlowVLBs,take over the ownership. */
|
317
|
+
inline void setVlbs(CglFlowVLB* vlbs) { vlbs_ = vlbs; vlbs = 0; }
|
318
|
+
inline void setVlbs(const CglFlowVLB& vlb, int i) {
|
319
|
+
if (vlbs_ != 0)
|
320
|
+
vlbs_[i] = vlb;
|
321
|
+
else {
|
322
|
+
std::cout << "ERROR: Should allocate memory for vlbs_ before "
|
323
|
+
<< "using it " << std::endl;
|
324
|
+
throw CoinError("Forgot to allocate memory for vlbs_", "setVlbs",
|
325
|
+
"CglFlowCover");
|
326
|
+
}
|
327
|
+
}
|
328
|
+
//@}
|
329
|
+
|
330
|
+
private:
|
331
|
+
//------------------------------------------------------------------------
|
332
|
+
// Private member data
|
333
|
+
|
334
|
+
/** The maximum number of flow cuts to be generated. Default is 1000. */
|
335
|
+
int maxNumCuts_;
|
336
|
+
/** Tolerance used for numerical purpose. */
|
337
|
+
double EPSILON_;
|
338
|
+
/** The variable upper bound of a flow is not indentified yet.*/
|
339
|
+
int UNDEFINED_;
|
340
|
+
/** Very large number. */
|
341
|
+
double INFTY_;
|
342
|
+
/** If violation of a cut is greater that this number, the cut is useful.*/
|
343
|
+
double TOLERANCE_;
|
344
|
+
/** First time preprocessing */
|
345
|
+
bool firstProcess_;
|
346
|
+
/** The number rows of the problem.*/
|
347
|
+
int numRows_;
|
348
|
+
/** The number columns of the problem.*/
|
349
|
+
int numCols_;
|
350
|
+
/** The number flow cuts found.*/
|
351
|
+
static int numFlowCuts_;
|
352
|
+
/** Indicate whether initial flow preprecessing has been done. */
|
353
|
+
bool doneInitPre_;
|
354
|
+
/** The array of CglFlowVUBs. */
|
355
|
+
CglFlowVUB* vubs_;
|
356
|
+
/** The array of CglFlowVLBs. */
|
357
|
+
CglFlowVLB* vlbs_;
|
358
|
+
/** CglFlowRowType of the rows in model. */
|
359
|
+
CglFlowRowType* rowTypes_;
|
360
|
+
};
|
361
|
+
|
362
|
+
//#############################################################################
|
363
|
+
/** A function that tests the methods in the CglFlowCover class. The
|
364
|
+
only reason for it not to be a member method is that this way it doesn't
|
365
|
+
have to be compiled into the library. And that's a gain, because the
|
366
|
+
library should be compiled with optimization on, but this method should be
|
367
|
+
compiled with debugging. */
|
368
|
+
void CglFlowCoverUnitTest(const OsiSolverInterface * siP,
|
369
|
+
const std::string mpdDir );
|
370
|
+
|
371
|
+
#endif
|