├── .clang-format ├── .coin-or ├── Dependencies ├── config.yml ├── generate_readme └── projDesc.xml ├── .gitattributes ├── .github └── workflows │ ├── linux-ci.yml │ ├── release.yml │ ├── windows-ci.yml │ └── windows-msvs-ci.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── MSVisualStudio ├── v10 │ ├── Cbc.sln │ ├── CbcCSosDllSample │ │ └── cbcCSosDllSample.vcxproj │ ├── CbcWithInstalledLibraries │ │ ├── BaseCBCProject.sln │ │ ├── BaseCBCProject.vcxproj │ │ ├── README.txt │ │ └── main.cpp │ ├── OsiCbcUnitTest │ │ └── OsiCbcUnitTest.vcxproj │ ├── cbc │ │ └── cbc.vcxproj │ ├── cbcCInterfaceDll │ │ └── cbcCInterfaceDll.vcxproj │ ├── cbcExamplesSample2 │ │ └── cbcExamplesSample2.vcxproj │ ├── libCbc │ │ └── libCbc.vcxproj │ ├── libCbcSolver │ │ └── libCbcSolver.vcxproj │ └── libOsiCbc │ │ └── libOsiCbc.vcxproj ├── v10alt │ ├── Cbc.sln │ ├── Cbc.vcxproj │ ├── OsiCbcUnitTest.vcxproj │ ├── cbc.props │ ├── cbcsolver.props │ ├── genDefForCbc.ps1 │ ├── libCbc.vcxproj │ ├── libCbcSolver.vcxproj │ ├── libOsiCbc.vcxproj │ └── osicbc.props ├── v14 │ ├── CbcCSosDllSample │ │ └── cbcCSosDllSample.vcxproj │ ├── cbcCInterfaceDll │ │ └── cbcCInterfaceDll.vcxproj │ ├── cbcExamplesSample2 │ │ └── cbcExamplesSample2.vcxproj │ ├── libCbc │ │ └── libCbc.vcxproj │ └── libCbcSolver │ │ └── libCbcSolver.vcxproj ├── v16 │ ├── Cbc.sln │ ├── OsiCbcUnitTest │ │ └── OsiCbcUnitTest.vcxproj │ ├── cbc │ │ └── cbc.vcxproj │ ├── cbcCInterfaceDll │ │ └── cbcCInterfaceDll.vcxproj │ ├── libCbc │ │ └── libCbc.vcxproj │ ├── libCbcSolver │ │ └── libCbcSolver.vcxproj │ └── libOsiCbc │ │ └── libOsiCbc.vcxproj ├── v17 │ ├── CInterfaceTest │ │ └── CInterfaceTest.vcxproj │ ├── Cbc.sln │ ├── CbcTest.cmd │ ├── cbc │ │ └── cbc.vcxproj │ ├── gamsTest │ │ └── gamsTest.vcxproj │ ├── libCbc │ │ └── libCbc.vcxproj │ ├── libCbcSolver │ │ └── libCbcSolver.vcxproj │ ├── libOsiCbc │ │ └── libOsiCbc.vcxproj │ └── osiUnitTest │ │ └── osiUnitTest.vcxproj ├── v9 │ ├── Cbc.sln │ ├── OsiCbcUnitTest │ │ └── OsiCbcUnitTest.vcproj │ ├── cbc │ │ └── cbc.vcproj │ ├── cbcCInterfaceDll │ │ └── cbcCInterfaceDll.vcproj │ ├── cbcCSosDllSample │ │ └── cbcCSosDllSample.vcproj │ ├── cbcExamplesSample2 │ │ └── cbcExamplesSample2.vcproj │ ├── libCbc │ │ └── libCbc.vcproj │ ├── libCbcSolver │ │ └── libCbcSolver.vcproj │ └── libOsiCbc │ │ └── libOsiCbc.vcproj └── v9alt │ ├── Cbc.sln │ ├── Cbc.vcproj │ ├── OsiCbcUnitTest.vcproj │ ├── cbc.vsprops │ ├── cbcsolver.vsprops │ ├── genDefForCbc.ps1 │ ├── libCbc.vcproj │ ├── libCbcSolver.vcproj │ ├── libOsiCbc.vcproj │ └── osicbc.vsprops ├── Makefile.am ├── Makefile.in ├── README.md ├── ar-lib ├── cbc.pc.in ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doxydoc └── doxygen.conf.in ├── examples ├── CbcBranchFollow2.cpp ├── CbcBranchFollow2.hpp ├── CbcBranchLink.cpp ├── CbcBranchLink.hpp ├── CbcBranchUser.cpp ├── CbcBranchUser.hpp ├── CbcCompareUser.cpp ├── CbcCompareUser.hpp ├── CbcSolver2.cpp ├── CbcSolver2.hpp ├── CbcSolver3.cpp ├── CbcSolver3.hpp ├── CbcSolverLongThin.cpp ├── CbcSolverLongThin.hpp ├── ClpQuadInterface.cpp ├── ClpQuadInterface.hpp ├── Makefile.in ├── allCuts.cpp ├── barrier.cpp ├── bell5.lot ├── cbc_driverC_sos.c ├── clpdriver.cpp ├── crew.cpp ├── driver.cpp ├── driver2.cpp ├── driver3.cpp ├── driver4.cpp ├── driver5.cpp ├── driver6.cpp ├── driverFat.cpp ├── fast0507.cpp ├── fast0507b.cpp ├── feature-extractor.cpp ├── gear.cpp ├── hotstart.cpp ├── inc.cpp ├── interrupt.cpp ├── link.cpp ├── longthin.cpp ├── lotsize.cpp ├── lotsize2.cpp ├── minimum.cpp ├── modify.cpp ├── modk.c ├── nway.cpp ├── parallel.cpp ├── pool.cpp ├── presolveBefore.cpp ├── qmip.cpp ├── qmip2.cpp ├── quad.mps ├── quad2.mps ├── repeat.cpp ├── sample1.cpp ├── sample2.cpp ├── sample3.cpp ├── sample4.cpp ├── sample5.cpp ├── simpleBAB.cpp ├── sos.cpp ├── sudoku.cpp ├── sudoku_sample.csv ├── tsp │ ├── .ycm_extra_conf.py │ ├── Makefile │ ├── att48.dist │ ├── bayg29.dist │ ├── bays29.dist │ ├── berlin52.dist │ ├── brazil58.dist │ ├── burma14.dist │ ├── dantzig42.dist │ ├── eil51.dist │ ├── eil76.dist │ ├── fri26.dist │ ├── gr17.dist │ ├── gr21.dist │ ├── gr24.dist │ ├── gr48.dist │ ├── gr96.dist │ ├── hk48.dist │ ├── pr76.dist │ ├── rat99.dist │ ├── st70.dist │ ├── swiss42.dist │ ├── test.sh │ ├── tsp-subtour.cpp │ ├── ulysses16.dist │ └── ulysses22.dist ├── userParallelHeuristic.cpp └── userParallelHeuristic2.cpp ├── format-all-sources.sh ├── install-sh ├── ltmain.sh ├── missing ├── osi-cbc.pc.in ├── scripts ├── batch.pbs ├── cbc ├── experiments.py ├── get.miplib2010 ├── parse.awk ├── parse_cbc.awk ├── parse_cbc_sol.awk ├── process.py ├── run.py ├── run.sh └── run_cbc.sh ├── src ├── .ycm_extra_conf.py ├── Attic │ ├── CbcGenOsiParam.cpp │ ├── CbcGenOsiParam.hpp │ ├── CbcGenOsiParamUtils.cpp │ ├── CbcModelParam.cpp │ ├── CbcModelParam.hpp │ ├── CbcSolver.cpp │ ├── CbcSolver.hpp │ ├── CbcSolverHeuristics.cpp │ ├── CbcSolverHeuristics.hpp │ ├── Cbc_C_Interface.cpp │ ├── CoinSolve.cpp │ └── unitTestClp.cpp ├── CbcBab.cpp ├── CbcBranchActual.hpp ├── CbcBranchAllDifferent.cpp ├── CbcBranchAllDifferent.hpp ├── CbcBranchBase.hpp ├── CbcBranchCut.cpp ├── CbcBranchCut.hpp ├── CbcBranchDecision.cpp ├── CbcBranchDecision.hpp ├── CbcBranchDefaultDecision.cpp ├── CbcBranchDefaultDecision.hpp ├── CbcBranchDynamic.cpp ├── CbcBranchDynamic.hpp ├── CbcBranchLotsize.cpp ├── CbcBranchLotsize.hpp ├── CbcBranchToFixLots.cpp ├── CbcBranchToFixLots.hpp ├── CbcBranchingObject.cpp ├── CbcBranchingObject.hpp ├── CbcCbcParam.cpp ├── CbcClique.cpp ├── CbcClique.hpp ├── CbcCompare.hpp ├── CbcCompareActual.hpp ├── CbcCompareBase.hpp ├── CbcCompareDefault.cpp ├── CbcCompareDefault.hpp ├── CbcCompareDepth.cpp ├── CbcCompareDepth.hpp ├── CbcCompareEstimate.cpp ├── CbcCompareEstimate.hpp ├── CbcCompareObjective.cpp ├── CbcCompareObjective.hpp ├── CbcConfig.h ├── CbcConsequence.cpp ├── CbcConsequence.hpp ├── CbcCountRowCut.cpp ├── CbcCountRowCut.hpp ├── CbcCutGenerator.cpp ├── CbcCutGenerator.hpp ├── CbcCutModifier.cpp ├── CbcCutModifier.hpp ├── CbcCutSubsetModifier.cpp ├── CbcCutSubsetModifier.hpp ├── CbcDebug.hpp ├── CbcDummyBranchingObject.cpp ├── CbcDummyBranchingObject.hpp ├── CbcEventHandler.cpp ├── CbcEventHandler.hpp ├── CbcFathom.cpp ├── CbcFathom.hpp ├── CbcFathomDynamicProgramming.cpp ├── CbcFathomDynamicProgramming.hpp ├── CbcFeasibilityBase.hpp ├── CbcFixVariable.cpp ├── CbcFixVariable.hpp ├── CbcFollowOn.cpp ├── CbcFollowOn.hpp ├── CbcFullNodeInfo.cpp ├── CbcFullNodeInfo.hpp ├── CbcGenConfig.h ├── CbcGenMessages.cpp ├── CbcGenMessages.hpp ├── CbcGenSolvers.cpp ├── CbcGeneral.cpp ├── CbcGeneral.hpp ├── CbcGeneralDepth.cpp ├── CbcGeneralDepth.hpp ├── CbcGeneric.cpp ├── CbcHeuristic.cpp ├── CbcHeuristic.hpp ├── CbcHeuristicDINS.cpp ├── CbcHeuristicDINS.hpp ├── CbcHeuristicDW.cpp ├── CbcHeuristicDW.hpp ├── CbcHeuristicDive.cpp ├── CbcHeuristicDive.hpp ├── CbcHeuristicDiveCoefficient.cpp ├── CbcHeuristicDiveCoefficient.hpp ├── CbcHeuristicDiveFractional.cpp ├── CbcHeuristicDiveFractional.hpp ├── CbcHeuristicDiveGuided.cpp ├── CbcHeuristicDiveGuided.hpp ├── CbcHeuristicDiveLineSearch.cpp ├── CbcHeuristicDiveLineSearch.hpp ├── CbcHeuristicDivePseudoCost.cpp ├── CbcHeuristicDivePseudoCost.hpp ├── CbcHeuristicDiveVectorLength.cpp ├── CbcHeuristicDiveVectorLength.hpp ├── CbcHeuristicFPump.cpp ├── CbcHeuristicFPump.hpp ├── CbcHeuristicGreedy.cpp ├── CbcHeuristicGreedy.hpp ├── CbcHeuristicLocal.cpp ├── CbcHeuristicLocal.hpp ├── CbcHeuristicPivotAndFix.cpp ├── CbcHeuristicPivotAndFix.hpp ├── CbcHeuristicRENS.cpp ├── CbcHeuristicRENS.hpp ├── CbcHeuristicRINS.cpp ├── CbcHeuristicRINS.hpp ├── CbcHeuristicRandRound.cpp ├── CbcHeuristicRandRound.hpp ├── CbcHeuristicVND.cpp ├── CbcHeuristicVND.hpp ├── CbcLinked.cpp ├── CbcLinked.hpp ├── CbcLinkedUtils.cpp ├── CbcMessage.cpp ├── CbcMessage.hpp ├── CbcMipStartIO.cpp ├── CbcMipStartIO.hpp ├── CbcModel.cpp ├── CbcModel.hpp ├── CbcNWay.cpp ├── CbcNWay.hpp ├── CbcNode.cpp ├── CbcNode.hpp ├── CbcNodeInfo.cpp ├── CbcNodeInfo.hpp ├── CbcObject.cpp ├── CbcObject.hpp ├── CbcObjectUpdateData.cpp ├── CbcObjectUpdateData.hpp ├── CbcParam.cpp ├── CbcParam.hpp ├── CbcParamUtils.cpp ├── CbcParamUtils.hpp ├── CbcParameters.cpp ├── CbcParameters.hpp ├── CbcPartialNodeInfo.cpp ├── CbcPartialNodeInfo.hpp ├── CbcSOS.cpp ├── CbcSOS.hpp ├── CbcSimpleInteger.cpp ├── CbcSimpleInteger.hpp ├── CbcSimpleIntegerDynamicPseudoCost.cpp ├── CbcSimpleIntegerDynamicPseudoCost.hpp ├── CbcSimpleIntegerPseudoCost.cpp ├── CbcSimpleIntegerPseudoCost.hpp ├── CbcSolution.cpp ├── CbcSolver.cpp ├── CbcSolver.hpp ├── CbcSolverAnalyze.cpp ├── CbcSolverAnalyze.hpp ├── CbcSolverExpandKnapsack.cpp ├── CbcSolverExpandKnapsack.hpp ├── CbcSolverHeuristics.cpp ├── CbcSolverHeuristics.hpp ├── CbcStatistics.cpp ├── CbcStatistics.hpp ├── CbcStrategy.cpp ├── CbcStrategy.hpp ├── CbcSubProblem.cpp ├── CbcSubProblem.hpp ├── CbcSymmetry.cpp ├── CbcSymmetry.hpp ├── CbcThread.cpp ├── CbcThread.hpp ├── CbcTree.cpp ├── CbcTree.hpp ├── CbcTreeLocal.cpp ├── CbcTreeLocal.hpp ├── Cbc_C_Interface.cpp ├── Cbc_C_Interface.h ├── ClpAmplObjective.hpp ├── ClpConstraintAmpl.hpp ├── CoinSolve.cpp ├── Makefile.am ├── Makefile.in ├── OsiCbc │ ├── Makefile.am │ ├── Makefile.in │ ├── OsiCbcConfig.h │ ├── OsiCbcSolverInterface.cpp │ ├── OsiCbcSolverInterface.hpp │ └── config_osicbc.h.in ├── config.h.in ├── config_cbc.h.in ├── config_cbc_default.h ├── config_default.h ├── configall_system.h ├── configall_system_msc.h ├── format-source.sh ├── unitTest.cpp └── unitTestClp.cpp └── test ├── CInterfaceTest.c ├── Makefile.am ├── Makefile.in ├── OsiCbcSolverInterfaceTest.cpp ├── gamsTest.cpp └── osiUnitTest.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.clang-format -------------------------------------------------------------------------------- /.coin-or/Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.coin-or/Dependencies -------------------------------------------------------------------------------- /.coin-or/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.coin-or/config.yml -------------------------------------------------------------------------------- /.coin-or/generate_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.coin-or/generate_readme -------------------------------------------------------------------------------- /.coin-or/projDesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.coin-or/projDesc.xml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/linux-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.github/workflows/linux-ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/windows-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.github/workflows/windows-ci.yml -------------------------------------------------------------------------------- /.github/workflows/windows-msvs-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.github/workflows/windows-msvs-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/LICENSE -------------------------------------------------------------------------------- /MSVisualStudio/v10/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v10/CbcCSosDllSample/cbcCSosDllSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/CbcCSosDllSample/cbcCSosDllSample.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/CbcWithInstalledLibraries/BaseCBCProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/CbcWithInstalledLibraries/BaseCBCProject.sln -------------------------------------------------------------------------------- /MSVisualStudio/v10/CbcWithInstalledLibraries/BaseCBCProject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/CbcWithInstalledLibraries/BaseCBCProject.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/CbcWithInstalledLibraries/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/CbcWithInstalledLibraries/README.txt -------------------------------------------------------------------------------- /MSVisualStudio/v10/CbcWithInstalledLibraries/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/CbcWithInstalledLibraries/main.cpp -------------------------------------------------------------------------------- /MSVisualStudio/v10/OsiCbcUnitTest/OsiCbcUnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/OsiCbcUnitTest/OsiCbcUnitTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/cbc/cbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/cbc/cbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/cbcExamplesSample2/cbcExamplesSample2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/cbcExamplesSample2/cbcExamplesSample2.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/libCbc/libCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/libCbc/libCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/libCbcSolver/libCbcSolver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/libCbcSolver/libCbcSolver.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10/libOsiCbc/libOsiCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10/libOsiCbc/libOsiCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/Cbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/Cbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/OsiCbcUnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/OsiCbcUnitTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/cbc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/cbc.props -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/cbcsolver.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/cbcsolver.props -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/genDefForCbc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/genDefForCbc.ps1 -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/libCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/libCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/libCbcSolver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/libCbcSolver.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/libOsiCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/libOsiCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v10alt/osicbc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v10alt/osicbc.props -------------------------------------------------------------------------------- /MSVisualStudio/v14/CbcCSosDllSample/cbcCSosDllSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v14/CbcCSosDllSample/cbcCSosDllSample.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v14/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v14/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v14/cbcExamplesSample2/cbcExamplesSample2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v14/cbcExamplesSample2/cbcExamplesSample2.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v14/libCbc/libCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v14/libCbc/libCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v14/libCbcSolver/libCbcSolver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v14/libCbcSolver/libCbcSolver.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v16/OsiCbcUnitTest/OsiCbcUnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/OsiCbcUnitTest/OsiCbcUnitTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/cbc/cbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/cbc/cbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/cbcCInterfaceDll/cbcCInterfaceDll.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/libCbc/libCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/libCbc/libCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/libCbcSolver/libCbcSolver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/libCbcSolver/libCbcSolver.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v16/libOsiCbc/libOsiCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v16/libOsiCbc/libOsiCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/CInterfaceTest/CInterfaceTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/CInterfaceTest/CInterfaceTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v17/CbcTest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/CbcTest.cmd -------------------------------------------------------------------------------- /MSVisualStudio/v17/cbc/cbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/cbc/cbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/gamsTest/gamsTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/gamsTest/gamsTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/libCbc/libCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/libCbc/libCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/libCbcSolver/libCbcSolver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/libCbcSolver/libCbcSolver.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/libOsiCbc/libOsiCbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/libOsiCbc/libOsiCbc.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v17/osiUnitTest/osiUnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v17/osiUnitTest/osiUnitTest.vcxproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v9/OsiCbcUnitTest/OsiCbcUnitTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/OsiCbcUnitTest/OsiCbcUnitTest.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/cbc/cbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/cbc/cbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/cbcCInterfaceDll/cbcCInterfaceDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/cbcCInterfaceDll/cbcCInterfaceDll.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/cbcCSosDllSample/cbcCSosDllSample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/cbcCSosDllSample/cbcCSosDllSample.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/cbcExamplesSample2/cbcExamplesSample2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/cbcExamplesSample2/cbcExamplesSample2.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/libCbc/libCbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/libCbc/libCbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9/libOsiCbc/libOsiCbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9/libOsiCbc/libOsiCbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/Cbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/Cbc.sln -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/Cbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/Cbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/OsiCbcUnitTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/OsiCbcUnitTest.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/cbc.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/cbc.vsprops -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/cbcsolver.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/cbcsolver.vsprops -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/genDefForCbc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/genDefForCbc.ps1 -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/libCbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/libCbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/libCbcSolver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/libCbcSolver.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/libOsiCbc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/libOsiCbc.vcproj -------------------------------------------------------------------------------- /MSVisualStudio/v9alt/osicbc.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/MSVisualStudio/v9alt/osicbc.vsprops -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/README.md -------------------------------------------------------------------------------- /ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/ar-lib -------------------------------------------------------------------------------- /cbc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/cbc.pc.in -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/depcomp -------------------------------------------------------------------------------- /doxydoc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/doxydoc/doxygen.conf.in -------------------------------------------------------------------------------- /examples/CbcBranchFollow2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchFollow2.cpp -------------------------------------------------------------------------------- /examples/CbcBranchFollow2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchFollow2.hpp -------------------------------------------------------------------------------- /examples/CbcBranchLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchLink.cpp -------------------------------------------------------------------------------- /examples/CbcBranchLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchLink.hpp -------------------------------------------------------------------------------- /examples/CbcBranchUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchUser.cpp -------------------------------------------------------------------------------- /examples/CbcBranchUser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcBranchUser.hpp -------------------------------------------------------------------------------- /examples/CbcCompareUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcCompareUser.cpp -------------------------------------------------------------------------------- /examples/CbcCompareUser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcCompareUser.hpp -------------------------------------------------------------------------------- /examples/CbcSolver2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolver2.cpp -------------------------------------------------------------------------------- /examples/CbcSolver2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolver2.hpp -------------------------------------------------------------------------------- /examples/CbcSolver3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolver3.cpp -------------------------------------------------------------------------------- /examples/CbcSolver3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolver3.hpp -------------------------------------------------------------------------------- /examples/CbcSolverLongThin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolverLongThin.cpp -------------------------------------------------------------------------------- /examples/CbcSolverLongThin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/CbcSolverLongThin.hpp -------------------------------------------------------------------------------- /examples/ClpQuadInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/ClpQuadInterface.cpp -------------------------------------------------------------------------------- /examples/ClpQuadInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/ClpQuadInterface.hpp -------------------------------------------------------------------------------- /examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/Makefile.in -------------------------------------------------------------------------------- /examples/allCuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/allCuts.cpp -------------------------------------------------------------------------------- /examples/barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/barrier.cpp -------------------------------------------------------------------------------- /examples/bell5.lot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/bell5.lot -------------------------------------------------------------------------------- /examples/cbc_driverC_sos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/cbc_driverC_sos.c -------------------------------------------------------------------------------- /examples/clpdriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/clpdriver.cpp -------------------------------------------------------------------------------- /examples/crew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/crew.cpp -------------------------------------------------------------------------------- /examples/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver.cpp -------------------------------------------------------------------------------- /examples/driver2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver2.cpp -------------------------------------------------------------------------------- /examples/driver3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver3.cpp -------------------------------------------------------------------------------- /examples/driver4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver4.cpp -------------------------------------------------------------------------------- /examples/driver5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver5.cpp -------------------------------------------------------------------------------- /examples/driver6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driver6.cpp -------------------------------------------------------------------------------- /examples/driverFat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/driverFat.cpp -------------------------------------------------------------------------------- /examples/fast0507.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/fast0507.cpp -------------------------------------------------------------------------------- /examples/fast0507b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/fast0507b.cpp -------------------------------------------------------------------------------- /examples/feature-extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/feature-extractor.cpp -------------------------------------------------------------------------------- /examples/gear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/gear.cpp -------------------------------------------------------------------------------- /examples/hotstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/hotstart.cpp -------------------------------------------------------------------------------- /examples/inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/inc.cpp -------------------------------------------------------------------------------- /examples/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/interrupt.cpp -------------------------------------------------------------------------------- /examples/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/link.cpp -------------------------------------------------------------------------------- /examples/longthin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/longthin.cpp -------------------------------------------------------------------------------- /examples/lotsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/lotsize.cpp -------------------------------------------------------------------------------- /examples/lotsize2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/lotsize2.cpp -------------------------------------------------------------------------------- /examples/minimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/minimum.cpp -------------------------------------------------------------------------------- /examples/modify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/modify.cpp -------------------------------------------------------------------------------- /examples/modk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/modk.c -------------------------------------------------------------------------------- /examples/nway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/nway.cpp -------------------------------------------------------------------------------- /examples/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/parallel.cpp -------------------------------------------------------------------------------- /examples/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/pool.cpp -------------------------------------------------------------------------------- /examples/presolveBefore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/presolveBefore.cpp -------------------------------------------------------------------------------- /examples/qmip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/qmip.cpp -------------------------------------------------------------------------------- /examples/qmip2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/qmip2.cpp -------------------------------------------------------------------------------- /examples/quad.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/quad.mps -------------------------------------------------------------------------------- /examples/quad2.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/quad2.mps -------------------------------------------------------------------------------- /examples/repeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/repeat.cpp -------------------------------------------------------------------------------- /examples/sample1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sample1.cpp -------------------------------------------------------------------------------- /examples/sample2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sample2.cpp -------------------------------------------------------------------------------- /examples/sample3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sample3.cpp -------------------------------------------------------------------------------- /examples/sample4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sample4.cpp -------------------------------------------------------------------------------- /examples/sample5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sample5.cpp -------------------------------------------------------------------------------- /examples/simpleBAB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/simpleBAB.cpp -------------------------------------------------------------------------------- /examples/sos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sos.cpp -------------------------------------------------------------------------------- /examples/sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sudoku.cpp -------------------------------------------------------------------------------- /examples/sudoku_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/sudoku_sample.csv -------------------------------------------------------------------------------- /examples/tsp/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/.ycm_extra_conf.py -------------------------------------------------------------------------------- /examples/tsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/Makefile -------------------------------------------------------------------------------- /examples/tsp/att48.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/att48.dist -------------------------------------------------------------------------------- /examples/tsp/bayg29.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/bayg29.dist -------------------------------------------------------------------------------- /examples/tsp/bays29.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/bays29.dist -------------------------------------------------------------------------------- /examples/tsp/berlin52.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/berlin52.dist -------------------------------------------------------------------------------- /examples/tsp/brazil58.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/brazil58.dist -------------------------------------------------------------------------------- /examples/tsp/burma14.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/burma14.dist -------------------------------------------------------------------------------- /examples/tsp/dantzig42.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/dantzig42.dist -------------------------------------------------------------------------------- /examples/tsp/eil51.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/eil51.dist -------------------------------------------------------------------------------- /examples/tsp/eil76.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/eil76.dist -------------------------------------------------------------------------------- /examples/tsp/fri26.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/fri26.dist -------------------------------------------------------------------------------- /examples/tsp/gr17.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/gr17.dist -------------------------------------------------------------------------------- /examples/tsp/gr21.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/gr21.dist -------------------------------------------------------------------------------- /examples/tsp/gr24.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/gr24.dist -------------------------------------------------------------------------------- /examples/tsp/gr48.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/gr48.dist -------------------------------------------------------------------------------- /examples/tsp/gr96.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/gr96.dist -------------------------------------------------------------------------------- /examples/tsp/hk48.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/hk48.dist -------------------------------------------------------------------------------- /examples/tsp/pr76.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/pr76.dist -------------------------------------------------------------------------------- /examples/tsp/rat99.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/rat99.dist -------------------------------------------------------------------------------- /examples/tsp/st70.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/st70.dist -------------------------------------------------------------------------------- /examples/tsp/swiss42.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/swiss42.dist -------------------------------------------------------------------------------- /examples/tsp/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/test.sh -------------------------------------------------------------------------------- /examples/tsp/tsp-subtour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/tsp-subtour.cpp -------------------------------------------------------------------------------- /examples/tsp/ulysses16.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/ulysses16.dist -------------------------------------------------------------------------------- /examples/tsp/ulysses22.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/tsp/ulysses22.dist -------------------------------------------------------------------------------- /examples/userParallelHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/userParallelHeuristic.cpp -------------------------------------------------------------------------------- /examples/userParallelHeuristic2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/examples/userParallelHeuristic2.cpp -------------------------------------------------------------------------------- /format-all-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/format-all-sources.sh -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/missing -------------------------------------------------------------------------------- /osi-cbc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/osi-cbc.pc.in -------------------------------------------------------------------------------- /scripts/batch.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/batch.pbs -------------------------------------------------------------------------------- /scripts/cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/cbc -------------------------------------------------------------------------------- /scripts/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/experiments.py -------------------------------------------------------------------------------- /scripts/get.miplib2010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/get.miplib2010 -------------------------------------------------------------------------------- /scripts/parse.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/parse.awk -------------------------------------------------------------------------------- /scripts/parse_cbc.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/parse_cbc.awk -------------------------------------------------------------------------------- /scripts/parse_cbc_sol.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/parse_cbc_sol.awk -------------------------------------------------------------------------------- /scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/process.py -------------------------------------------------------------------------------- /scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/run.py -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/run_cbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/scripts/run_cbc.sh -------------------------------------------------------------------------------- /src/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/.ycm_extra_conf.py -------------------------------------------------------------------------------- /src/Attic/CbcGenOsiParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcGenOsiParam.cpp -------------------------------------------------------------------------------- /src/Attic/CbcGenOsiParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcGenOsiParam.hpp -------------------------------------------------------------------------------- /src/Attic/CbcGenOsiParamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcGenOsiParamUtils.cpp -------------------------------------------------------------------------------- /src/Attic/CbcModelParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcModelParam.cpp -------------------------------------------------------------------------------- /src/Attic/CbcModelParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcModelParam.hpp -------------------------------------------------------------------------------- /src/Attic/CbcSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcSolver.cpp -------------------------------------------------------------------------------- /src/Attic/CbcSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcSolver.hpp -------------------------------------------------------------------------------- /src/Attic/CbcSolverHeuristics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcSolverHeuristics.cpp -------------------------------------------------------------------------------- /src/Attic/CbcSolverHeuristics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CbcSolverHeuristics.hpp -------------------------------------------------------------------------------- /src/Attic/Cbc_C_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/Cbc_C_Interface.cpp -------------------------------------------------------------------------------- /src/Attic/CoinSolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/CoinSolve.cpp -------------------------------------------------------------------------------- /src/Attic/unitTestClp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Attic/unitTestClp.cpp -------------------------------------------------------------------------------- /src/CbcBab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBab.cpp -------------------------------------------------------------------------------- /src/CbcBranchActual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchActual.hpp -------------------------------------------------------------------------------- /src/CbcBranchAllDifferent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchAllDifferent.cpp -------------------------------------------------------------------------------- /src/CbcBranchAllDifferent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchAllDifferent.hpp -------------------------------------------------------------------------------- /src/CbcBranchBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchBase.hpp -------------------------------------------------------------------------------- /src/CbcBranchCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchCut.cpp -------------------------------------------------------------------------------- /src/CbcBranchCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchCut.hpp -------------------------------------------------------------------------------- /src/CbcBranchDecision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDecision.cpp -------------------------------------------------------------------------------- /src/CbcBranchDecision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDecision.hpp -------------------------------------------------------------------------------- /src/CbcBranchDefaultDecision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDefaultDecision.cpp -------------------------------------------------------------------------------- /src/CbcBranchDefaultDecision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDefaultDecision.hpp -------------------------------------------------------------------------------- /src/CbcBranchDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDynamic.cpp -------------------------------------------------------------------------------- /src/CbcBranchDynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchDynamic.hpp -------------------------------------------------------------------------------- /src/CbcBranchLotsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchLotsize.cpp -------------------------------------------------------------------------------- /src/CbcBranchLotsize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchLotsize.hpp -------------------------------------------------------------------------------- /src/CbcBranchToFixLots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchToFixLots.cpp -------------------------------------------------------------------------------- /src/CbcBranchToFixLots.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchToFixLots.hpp -------------------------------------------------------------------------------- /src/CbcBranchingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchingObject.cpp -------------------------------------------------------------------------------- /src/CbcBranchingObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcBranchingObject.hpp -------------------------------------------------------------------------------- /src/CbcCbcParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCbcParam.cpp -------------------------------------------------------------------------------- /src/CbcClique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcClique.cpp -------------------------------------------------------------------------------- /src/CbcClique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcClique.hpp -------------------------------------------------------------------------------- /src/CbcCompare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompare.hpp -------------------------------------------------------------------------------- /src/CbcCompareActual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareActual.hpp -------------------------------------------------------------------------------- /src/CbcCompareBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareBase.hpp -------------------------------------------------------------------------------- /src/CbcCompareDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareDefault.cpp -------------------------------------------------------------------------------- /src/CbcCompareDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareDefault.hpp -------------------------------------------------------------------------------- /src/CbcCompareDepth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareDepth.cpp -------------------------------------------------------------------------------- /src/CbcCompareDepth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareDepth.hpp -------------------------------------------------------------------------------- /src/CbcCompareEstimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareEstimate.cpp -------------------------------------------------------------------------------- /src/CbcCompareEstimate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareEstimate.hpp -------------------------------------------------------------------------------- /src/CbcCompareObjective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareObjective.cpp -------------------------------------------------------------------------------- /src/CbcCompareObjective.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCompareObjective.hpp -------------------------------------------------------------------------------- /src/CbcConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcConfig.h -------------------------------------------------------------------------------- /src/CbcConsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcConsequence.cpp -------------------------------------------------------------------------------- /src/CbcConsequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcConsequence.hpp -------------------------------------------------------------------------------- /src/CbcCountRowCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCountRowCut.cpp -------------------------------------------------------------------------------- /src/CbcCountRowCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCountRowCut.hpp -------------------------------------------------------------------------------- /src/CbcCutGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutGenerator.cpp -------------------------------------------------------------------------------- /src/CbcCutGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutGenerator.hpp -------------------------------------------------------------------------------- /src/CbcCutModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutModifier.cpp -------------------------------------------------------------------------------- /src/CbcCutModifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutModifier.hpp -------------------------------------------------------------------------------- /src/CbcCutSubsetModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutSubsetModifier.cpp -------------------------------------------------------------------------------- /src/CbcCutSubsetModifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcCutSubsetModifier.hpp -------------------------------------------------------------------------------- /src/CbcDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcDebug.hpp -------------------------------------------------------------------------------- /src/CbcDummyBranchingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcDummyBranchingObject.cpp -------------------------------------------------------------------------------- /src/CbcDummyBranchingObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcDummyBranchingObject.hpp -------------------------------------------------------------------------------- /src/CbcEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcEventHandler.cpp -------------------------------------------------------------------------------- /src/CbcEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcEventHandler.hpp -------------------------------------------------------------------------------- /src/CbcFathom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFathom.cpp -------------------------------------------------------------------------------- /src/CbcFathom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFathom.hpp -------------------------------------------------------------------------------- /src/CbcFathomDynamicProgramming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFathomDynamicProgramming.cpp -------------------------------------------------------------------------------- /src/CbcFathomDynamicProgramming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFathomDynamicProgramming.hpp -------------------------------------------------------------------------------- /src/CbcFeasibilityBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFeasibilityBase.hpp -------------------------------------------------------------------------------- /src/CbcFixVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFixVariable.cpp -------------------------------------------------------------------------------- /src/CbcFixVariable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFixVariable.hpp -------------------------------------------------------------------------------- /src/CbcFollowOn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFollowOn.cpp -------------------------------------------------------------------------------- /src/CbcFollowOn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFollowOn.hpp -------------------------------------------------------------------------------- /src/CbcFullNodeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFullNodeInfo.cpp -------------------------------------------------------------------------------- /src/CbcFullNodeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcFullNodeInfo.hpp -------------------------------------------------------------------------------- /src/CbcGenConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGenConfig.h -------------------------------------------------------------------------------- /src/CbcGenMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGenMessages.cpp -------------------------------------------------------------------------------- /src/CbcGenMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGenMessages.hpp -------------------------------------------------------------------------------- /src/CbcGenSolvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGenSolvers.cpp -------------------------------------------------------------------------------- /src/CbcGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGeneral.cpp -------------------------------------------------------------------------------- /src/CbcGeneral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGeneral.hpp -------------------------------------------------------------------------------- /src/CbcGeneralDepth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGeneralDepth.cpp -------------------------------------------------------------------------------- /src/CbcGeneralDepth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGeneralDepth.hpp -------------------------------------------------------------------------------- /src/CbcGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcGeneric.cpp -------------------------------------------------------------------------------- /src/CbcHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristic.cpp -------------------------------------------------------------------------------- /src/CbcHeuristic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristic.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDINS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDINS.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDINS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDINS.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDW.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDW.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDive.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDive.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveCoefficient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveCoefficient.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveCoefficient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveCoefficient.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveFractional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveFractional.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveFractional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveFractional.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveGuided.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveGuided.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveGuided.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveGuided.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveLineSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveLineSearch.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveLineSearch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveLineSearch.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDivePseudoCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDivePseudoCost.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDivePseudoCost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDivePseudoCost.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveVectorLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveVectorLength.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicDiveVectorLength.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicDiveVectorLength.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicFPump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicFPump.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicFPump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicFPump.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicGreedy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicGreedy.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicGreedy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicGreedy.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicLocal.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicLocal.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicPivotAndFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicPivotAndFix.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicPivotAndFix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicPivotAndFix.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicRENS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRENS.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicRENS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRENS.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicRINS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRINS.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicRINS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRINS.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicRandRound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRandRound.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicRandRound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicRandRound.hpp -------------------------------------------------------------------------------- /src/CbcHeuristicVND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicVND.cpp -------------------------------------------------------------------------------- /src/CbcHeuristicVND.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcHeuristicVND.hpp -------------------------------------------------------------------------------- /src/CbcLinked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcLinked.cpp -------------------------------------------------------------------------------- /src/CbcLinked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcLinked.hpp -------------------------------------------------------------------------------- /src/CbcLinkedUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcLinkedUtils.cpp -------------------------------------------------------------------------------- /src/CbcMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcMessage.cpp -------------------------------------------------------------------------------- /src/CbcMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcMessage.hpp -------------------------------------------------------------------------------- /src/CbcMipStartIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcMipStartIO.cpp -------------------------------------------------------------------------------- /src/CbcMipStartIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcMipStartIO.hpp -------------------------------------------------------------------------------- /src/CbcModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcModel.cpp -------------------------------------------------------------------------------- /src/CbcModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcModel.hpp -------------------------------------------------------------------------------- /src/CbcNWay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNWay.cpp -------------------------------------------------------------------------------- /src/CbcNWay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNWay.hpp -------------------------------------------------------------------------------- /src/CbcNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNode.cpp -------------------------------------------------------------------------------- /src/CbcNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNode.hpp -------------------------------------------------------------------------------- /src/CbcNodeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNodeInfo.cpp -------------------------------------------------------------------------------- /src/CbcNodeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcNodeInfo.hpp -------------------------------------------------------------------------------- /src/CbcObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcObject.cpp -------------------------------------------------------------------------------- /src/CbcObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcObject.hpp -------------------------------------------------------------------------------- /src/CbcObjectUpdateData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcObjectUpdateData.cpp -------------------------------------------------------------------------------- /src/CbcObjectUpdateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcObjectUpdateData.hpp -------------------------------------------------------------------------------- /src/CbcParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParam.cpp -------------------------------------------------------------------------------- /src/CbcParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParam.hpp -------------------------------------------------------------------------------- /src/CbcParamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParamUtils.cpp -------------------------------------------------------------------------------- /src/CbcParamUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParamUtils.hpp -------------------------------------------------------------------------------- /src/CbcParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParameters.cpp -------------------------------------------------------------------------------- /src/CbcParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcParameters.hpp -------------------------------------------------------------------------------- /src/CbcPartialNodeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcPartialNodeInfo.cpp -------------------------------------------------------------------------------- /src/CbcPartialNodeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcPartialNodeInfo.hpp -------------------------------------------------------------------------------- /src/CbcSOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSOS.cpp -------------------------------------------------------------------------------- /src/CbcSOS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSOS.hpp -------------------------------------------------------------------------------- /src/CbcSimpleInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleInteger.cpp -------------------------------------------------------------------------------- /src/CbcSimpleInteger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleInteger.hpp -------------------------------------------------------------------------------- /src/CbcSimpleIntegerDynamicPseudoCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleIntegerDynamicPseudoCost.cpp -------------------------------------------------------------------------------- /src/CbcSimpleIntegerDynamicPseudoCost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleIntegerDynamicPseudoCost.hpp -------------------------------------------------------------------------------- /src/CbcSimpleIntegerPseudoCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleIntegerPseudoCost.cpp -------------------------------------------------------------------------------- /src/CbcSimpleIntegerPseudoCost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSimpleIntegerPseudoCost.hpp -------------------------------------------------------------------------------- /src/CbcSolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolution.cpp -------------------------------------------------------------------------------- /src/CbcSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolver.cpp -------------------------------------------------------------------------------- /src/CbcSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolver.hpp -------------------------------------------------------------------------------- /src/CbcSolverAnalyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverAnalyze.cpp -------------------------------------------------------------------------------- /src/CbcSolverAnalyze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverAnalyze.hpp -------------------------------------------------------------------------------- /src/CbcSolverExpandKnapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverExpandKnapsack.cpp -------------------------------------------------------------------------------- /src/CbcSolverExpandKnapsack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverExpandKnapsack.hpp -------------------------------------------------------------------------------- /src/CbcSolverHeuristics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverHeuristics.cpp -------------------------------------------------------------------------------- /src/CbcSolverHeuristics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSolverHeuristics.hpp -------------------------------------------------------------------------------- /src/CbcStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcStatistics.cpp -------------------------------------------------------------------------------- /src/CbcStatistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcStatistics.hpp -------------------------------------------------------------------------------- /src/CbcStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcStrategy.cpp -------------------------------------------------------------------------------- /src/CbcStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcStrategy.hpp -------------------------------------------------------------------------------- /src/CbcSubProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSubProblem.cpp -------------------------------------------------------------------------------- /src/CbcSubProblem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSubProblem.hpp -------------------------------------------------------------------------------- /src/CbcSymmetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSymmetry.cpp -------------------------------------------------------------------------------- /src/CbcSymmetry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcSymmetry.hpp -------------------------------------------------------------------------------- /src/CbcThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcThread.cpp -------------------------------------------------------------------------------- /src/CbcThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcThread.hpp -------------------------------------------------------------------------------- /src/CbcTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcTree.cpp -------------------------------------------------------------------------------- /src/CbcTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcTree.hpp -------------------------------------------------------------------------------- /src/CbcTreeLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcTreeLocal.cpp -------------------------------------------------------------------------------- /src/CbcTreeLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CbcTreeLocal.hpp -------------------------------------------------------------------------------- /src/Cbc_C_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Cbc_C_Interface.cpp -------------------------------------------------------------------------------- /src/Cbc_C_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Cbc_C_Interface.h -------------------------------------------------------------------------------- /src/ClpAmplObjective.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/ClpAmplObjective.hpp -------------------------------------------------------------------------------- /src/ClpConstraintAmpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/ClpConstraintAmpl.hpp -------------------------------------------------------------------------------- /src/CoinSolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/CoinSolve.cpp -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/OsiCbc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/Makefile.am -------------------------------------------------------------------------------- /src/OsiCbc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/Makefile.in -------------------------------------------------------------------------------- /src/OsiCbc/OsiCbcConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/OsiCbcConfig.h -------------------------------------------------------------------------------- /src/OsiCbc/OsiCbcSolverInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/OsiCbcSolverInterface.cpp -------------------------------------------------------------------------------- /src/OsiCbc/OsiCbcSolverInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/OsiCbcSolverInterface.hpp -------------------------------------------------------------------------------- /src/OsiCbc/config_osicbc.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/OsiCbc/config_osicbc.h.in -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/config_cbc.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/config_cbc.h.in -------------------------------------------------------------------------------- /src/config_cbc_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/config_cbc_default.h -------------------------------------------------------------------------------- /src/config_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/config_default.h -------------------------------------------------------------------------------- /src/configall_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/configall_system.h -------------------------------------------------------------------------------- /src/configall_system_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/configall_system_msc.h -------------------------------------------------------------------------------- /src/format-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/format-source.sh -------------------------------------------------------------------------------- /src/unitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/unitTest.cpp -------------------------------------------------------------------------------- /src/unitTestClp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/src/unitTestClp.cpp -------------------------------------------------------------------------------- /test/CInterfaceTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/CInterfaceTest.c -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/Makefile.in -------------------------------------------------------------------------------- /test/OsiCbcSolverInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/OsiCbcSolverInterfaceTest.cpp -------------------------------------------------------------------------------- /test/gamsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/gamsTest.cpp -------------------------------------------------------------------------------- /test/osiUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Cbc/HEAD/test/osiUnitTest.cpp --------------------------------------------------------------------------------