├── .ci ├── .travis.pre └── appveyor.pre ├── .coin-or ├── Dependencies └── projDesc.xml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README.md ├── appveyor.yml ├── ar-lib ├── bonmin.pc.in ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc ├── BONMIN_ReferenceManual.hpp ├── BONMIN_UsersManual.tex ├── Head.tex ├── Install.tex ├── Intro.tex ├── Makefile ├── Obtain.tex ├── bib.tex ├── bonmin.css ├── bonmin.sty ├── genHtml.sh ├── htrick.sty ├── ltrick.sty ├── option_pages │ ├── Head.tex │ ├── bonmin.sty │ ├── genHtml.sh │ ├── genOptionsDocs.sh │ ├── htrick.sty │ ├── ltrick.sty │ ├── options_list_TEMPLATE.tex │ ├── options_list_bonmin_content.tex │ ├── options_list_filter_content.tex │ └── options_list_ipopt_content.tex ├── options.tex ├── options_list.tex ├── options_list_bonmin_content.tex ├── options_list_filter_content.tex ├── options_list_ipopt_content.tex ├── options_set.tex ├── options_table.tex └── use.tex ├── doxydoc └── doxygen.conf.in ├── examples ├── CExample │ ├── Makefile.in │ ├── MyBonmin.c │ ├── MyBonmin.h │ └── main.c ├── CppExample │ ├── Makefile.in │ ├── MyBonmin.cpp │ ├── MyTMINLP.cpp │ ├── MyTMINLP.hpp │ └── Mybonmin.opt ├── OptionDocGen │ ├── DocGen.cpp │ ├── Makefile.in │ ├── MyTMINLP.cpp │ └── MyTMINLP.hpp └── amplExamples │ └── toy.mod ├── experimental ├── Bcp │ ├── BB_cut.cpp │ ├── BB_cut.hpp │ ├── BM.cpp │ ├── BM.hpp │ ├── BM.par │ ├── BM_lp.cpp │ ├── BM_lp_branch.cpp │ ├── BM_pack.cpp │ ├── BM_tm.cpp │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ └── ampl_bcp.patch ├── RobotBonmin │ ├── BonNWayChoose.cpp │ ├── BonNWayChoose.hpp │ ├── BonNWayObject.cpp │ ├── BonNWayObject.hpp │ ├── Makefile.am │ ├── Makefile.in │ ├── Robot-bonmin.cpp │ ├── RobotSetup.cpp │ └── RobotSetup.hpp └── Separable │ ├── BonHeuristicInnerApproximation.cpp │ ├── BonHeuristicInnerApproximation.hpp │ ├── BonOuterDescription.cpp │ ├── BonOuterDescription.hpp │ ├── Makefile.am │ ├── Makefile.in │ ├── Sepa.cpp │ ├── SepaHeuristicInnerApproximation.cpp │ ├── SepaHeuristicInnerApproximation.hpp │ ├── SepaSetup.cpp │ ├── SepaSetup.hpp │ ├── SepaTMINLP2OsiLP.cpp │ └── SepaTMINLP2OsiLP.hpp ├── install-sh ├── ltmain.sh ├── missing ├── src ├── Algorithms │ ├── Ampl │ │ ├── BonAmplSetup.cpp │ │ ├── BonAmplSetup.hpp │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── BonBabSetupBase.cpp │ ├── BonBabSetupBase.hpp │ ├── BonBonminSetup.cpp │ ├── BonBonminSetup.hpp │ ├── BonCbcLpStrategy.cpp │ ├── BonCbcLpStrategy.hpp │ ├── BonSolverHelp.cpp │ ├── BonSolverHelp.hpp │ ├── BonSubMipSolver.cpp │ ├── BonSubMipSolver.hpp │ ├── Branching │ │ ├── BonChooseVariable.cpp │ │ ├── BonChooseVariable.hpp │ │ ├── BonCurvBranchingSolver.cpp │ │ ├── BonCurvBranchingSolver.hpp │ │ ├── BonLpBranchingSolver.cpp │ │ ├── BonLpBranchingSolver.hpp │ │ ├── BonPseudoCosts.cpp │ │ ├── BonPseudoCosts.hpp │ │ ├── BonQpBranchingSolver.cpp │ │ ├── BonQpBranchingSolver.hpp │ │ ├── BonRandomChoice.cpp │ │ ├── BonRandomChoice.hpp │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── OaGenerators │ │ ├── BonDummyHeuristic.cpp │ │ ├── BonDummyHeuristic.hpp │ │ ├── BonEcpCuts.cpp │ │ ├── BonEcpCuts.hpp │ │ ├── BonFpForMinlp.cpp │ │ ├── BonFpForMinlp.hpp │ │ ├── BonOACutGenerator2.cpp │ │ ├── BonOACutGenerator2.hpp │ │ ├── BonOAMessages.cpp │ │ ├── BonOAMessages.hpp │ │ ├── BonOaDecBase.cpp │ │ ├── BonOaDecBase.hpp │ │ ├── BonOaFeasChecker.cpp │ │ ├── BonOaFeasChecker.hpp │ │ ├── BonOaNlpOptim.cpp │ │ ├── BonOaNlpOptim.hpp │ │ ├── Makefile.am │ │ └── Makefile.in │ └── QuadCuts │ │ ├── BonArraysHelpers.hpp │ │ ├── BonLinearCutsGenerator.cpp │ │ ├── BonLinearCutsGenerator.hpp │ │ ├── BonOuterApprox.cpp │ │ ├── BonOuterApprox.hpp │ │ ├── BonQuadCut.cpp │ │ ├── BonQuadCut.hpp │ │ ├── BonQuadRow.cpp │ │ ├── BonQuadRow.hpp │ │ ├── BonTMINLP2Quad.cpp │ │ ├── BonTMINLP2Quad.hpp │ │ ├── BonTMINLPLinObj.cpp │ │ ├── BonTMINLPLinObj.hpp │ │ ├── BonTMatrix.cpp │ │ ├── BonTMatrix.hpp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── next ├── Apps │ ├── BonMin.cpp │ ├── BonNodeSolver.cpp │ ├── Makefile.am │ └── Makefile.in ├── CbcBonmin │ ├── BonBabInfos.cpp │ ├── BonBabInfos.hpp │ ├── BonCbc.cpp │ ├── BonCbc.hpp │ ├── BonCbcNlpStrategy.cpp │ ├── BonCbcNlpStrategy.hpp │ ├── BonCbcNode.cpp │ ├── BonCbcNode.hpp │ ├── BonDiver.cpp │ ├── BonDiver.hpp │ ├── BonGuessHeuristic.cpp │ ├── BonGuessHeuristic.hpp │ ├── Heuristics │ │ ├── BonDummyPump.cpp │ │ ├── BonDummyPump.hpp │ │ ├── BonFixAndSolveHeuristic.cpp │ │ ├── BonFixAndSolveHeuristic.hpp │ │ ├── BonHeuristicDive.cpp │ │ ├── BonHeuristicDive.hpp │ │ ├── BonHeuristicDiveFractional.cpp │ │ ├── BonHeuristicDiveFractional.hpp │ │ ├── BonHeuristicDiveMIP.cpp │ │ ├── BonHeuristicDiveMIP.hpp │ │ ├── BonHeuristicDiveMIPFractional.cpp │ │ ├── BonHeuristicDiveMIPFractional.hpp │ │ ├── BonHeuristicDiveMIPVectorLength.cpp │ │ ├── BonHeuristicDiveMIPVectorLength.hpp │ │ ├── BonHeuristicDiveVectorLength.cpp │ │ ├── BonHeuristicDiveVectorLength.hpp │ │ ├── BonHeuristicFPump.cpp │ │ ├── BonHeuristicFPump.hpp │ │ ├── BonHeuristicLocalBranching.cpp │ │ ├── BonHeuristicLocalBranching.hpp │ │ ├── BonHeuristicRINS.cpp │ │ ├── BonHeuristicRINS.hpp │ │ ├── BonLocalSolverBasedHeuristic.cpp │ │ ├── BonLocalSolverBasedHeuristic.hpp │ │ ├── BonMilpRounding.cpp │ │ ├── BonMilpRounding.hpp │ │ ├── BonPumpForMinlp.cpp │ │ ├── BonPumpForMinlp.hpp │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── Makefile.am │ ├── Makefile.in │ └── bonminamplinterface.pc.in └── Interfaces │ ├── Ampl │ ├── BonAmplInterface.cpp │ ├── BonAmplInterface.hpp │ ├── BonAmplTMINLP.cpp │ ├── BonAmplTMINLP.hpp │ ├── BonSolReader.cpp │ ├── BonSolReader.hpp │ ├── Makefile.am │ ├── Makefile.in │ └── sos_kludge.cpp │ ├── BonAuxInfos.cpp │ ├── BonAuxInfos.hpp │ ├── BonBoundsReader.cpp │ ├── BonBoundsReader.hpp │ ├── BonBranchingTQP.cpp │ ├── BonBranchingTQP.hpp │ ├── BonColReader.cpp │ ├── BonColReader.hpp │ ├── BonCurvatureEstimator.cpp │ ├── BonCurvatureEstimator.hpp │ ├── BonCutStrengthener.cpp │ ├── BonCutStrengthener.hpp │ ├── BonExitCodes.hpp │ ├── BonMsgUtils.hpp │ ├── BonOsiTMINLPInterface.cpp │ ├── BonOsiTMINLPInterface.hpp │ ├── BonRegisteredOptions.cpp │ ├── BonRegisteredOptions.hpp │ ├── BonStartPointReader.cpp │ ├── BonStartPointReader.hpp │ ├── BonStdCInterface.cpp │ ├── BonStdCInterface.h │ ├── BonStdInterfaceTMINLP.cpp │ ├── BonStdInterfaceTMINLP.hpp │ ├── BonStrongBranchingSolver.cpp │ ├── BonStrongBranchingSolver.hpp │ ├── BonTMINLP.cpp │ ├── BonTMINLP.hpp │ ├── BonTMINLP2OsiLP.cpp │ ├── BonTMINLP2OsiLP.hpp │ ├── BonTMINLP2TNLP.cpp │ ├── BonTMINLP2TNLP.hpp │ ├── BonTNLP2FPNLP.cpp │ ├── BonTNLP2FPNLP.hpp │ ├── BonTNLPSolver.cpp │ ├── BonTNLPSolver.hpp │ ├── BonTypes.hpp │ ├── BonminConfig.h │ ├── Filter │ ├── BonBqpdSolver.cpp │ ├── BonBqpdSolver.hpp │ ├── BonBqpdWarmStart.cpp │ ├── BonBqpdWarmStart.hpp │ ├── BonFilterSolver.cpp │ ├── BonFilterSolver.hpp │ ├── BonFilterTypes.hpp │ ├── BonFilterWarmStart.cpp │ ├── BonFilterWarmStart.hpp │ ├── Makefile.am │ └── Makefile.in │ ├── Ipopt │ ├── BonIpoptInteriorWarmStarter.cpp │ ├── BonIpoptInteriorWarmStarter.hpp │ ├── BonIpoptSolver.cpp │ ├── BonIpoptSolver.hpp │ ├── BonIpoptWarmStart.cpp │ ├── BonIpoptWarmStart.hpp │ ├── Makefile.am │ └── Makefile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h.in │ ├── config_bonmin.h.in │ ├── config_bonmin_default.h │ ├── config_default.h │ ├── configall_system.h │ └── configall_system_msc.h └── test ├── InterfaceTest.cpp ├── Makefile.am ├── Makefile.in ├── bonmin.opt ├── mytoy.nl └── toy.mps.gz /.ci/.travis.pre: -------------------------------------------------------------------------------- 1 | language: cpp 2 | 3 | -------------------------------------------------------------------------------- /.ci/appveyor.pre: -------------------------------------------------------------------------------- 1 | platform: 2 | - x64 3 | 4 | environment: 5 | -------------------------------------------------------------------------------- /.coin-or/Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/.coin-or/Dependencies -------------------------------------------------------------------------------- /.coin-or/projDesc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/.coin-or/projDesc.xml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | experimental/Bcp/.deps 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/AUTHORS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/ar-lib -------------------------------------------------------------------------------- /bonmin.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/bonmin.pc.in -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/depcomp -------------------------------------------------------------------------------- /doc/BONMIN_ReferenceManual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/BONMIN_ReferenceManual.hpp -------------------------------------------------------------------------------- /doc/BONMIN_UsersManual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/BONMIN_UsersManual.tex -------------------------------------------------------------------------------- /doc/Head.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/Head.tex -------------------------------------------------------------------------------- /doc/Install.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/Install.tex -------------------------------------------------------------------------------- /doc/Intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/Intro.tex -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Obtain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/Obtain.tex -------------------------------------------------------------------------------- /doc/bib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/bib.tex -------------------------------------------------------------------------------- /doc/bonmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/bonmin.css -------------------------------------------------------------------------------- /doc/bonmin.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/bonmin.sty -------------------------------------------------------------------------------- /doc/genHtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/genHtml.sh -------------------------------------------------------------------------------- /doc/htrick.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/htrick.sty -------------------------------------------------------------------------------- /doc/ltrick.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/ltrick.sty -------------------------------------------------------------------------------- /doc/option_pages/Head.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/Head.tex -------------------------------------------------------------------------------- /doc/option_pages/bonmin.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/bonmin.sty -------------------------------------------------------------------------------- /doc/option_pages/genHtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/genHtml.sh -------------------------------------------------------------------------------- /doc/option_pages/genOptionsDocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/genOptionsDocs.sh -------------------------------------------------------------------------------- /doc/option_pages/htrick.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/htrick.sty -------------------------------------------------------------------------------- /doc/option_pages/ltrick.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/ltrick.sty -------------------------------------------------------------------------------- /doc/option_pages/options_list_TEMPLATE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/option_pages/options_list_TEMPLATE.tex -------------------------------------------------------------------------------- /doc/option_pages/options_list_bonmin_content.tex: -------------------------------------------------------------------------------- 1 | ../options_list_bonmin_content.tex -------------------------------------------------------------------------------- /doc/option_pages/options_list_filter_content.tex: -------------------------------------------------------------------------------- 1 | ../options_list_filter_content.tex -------------------------------------------------------------------------------- /doc/option_pages/options_list_ipopt_content.tex: -------------------------------------------------------------------------------- 1 | ../options_list_ipopt_content.tex -------------------------------------------------------------------------------- /doc/options.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options.tex -------------------------------------------------------------------------------- /doc/options_list.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_list.tex -------------------------------------------------------------------------------- /doc/options_list_bonmin_content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_list_bonmin_content.tex -------------------------------------------------------------------------------- /doc/options_list_filter_content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_list_filter_content.tex -------------------------------------------------------------------------------- /doc/options_list_ipopt_content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_list_ipopt_content.tex -------------------------------------------------------------------------------- /doc/options_set.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_set.tex -------------------------------------------------------------------------------- /doc/options_table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/options_table.tex -------------------------------------------------------------------------------- /doc/use.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doc/use.tex -------------------------------------------------------------------------------- /doxydoc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/doxydoc/doxygen.conf.in -------------------------------------------------------------------------------- /examples/CExample/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CExample/Makefile.in -------------------------------------------------------------------------------- /examples/CExample/MyBonmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CExample/MyBonmin.c -------------------------------------------------------------------------------- /examples/CExample/MyBonmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CExample/MyBonmin.h -------------------------------------------------------------------------------- /examples/CExample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CExample/main.c -------------------------------------------------------------------------------- /examples/CppExample/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CppExample/Makefile.in -------------------------------------------------------------------------------- /examples/CppExample/MyBonmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CppExample/MyBonmin.cpp -------------------------------------------------------------------------------- /examples/CppExample/MyTMINLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CppExample/MyTMINLP.cpp -------------------------------------------------------------------------------- /examples/CppExample/MyTMINLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/CppExample/MyTMINLP.hpp -------------------------------------------------------------------------------- /examples/CppExample/Mybonmin.opt: -------------------------------------------------------------------------------- 1 | print_solution no 2 | -------------------------------------------------------------------------------- /examples/OptionDocGen/DocGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/OptionDocGen/DocGen.cpp -------------------------------------------------------------------------------- /examples/OptionDocGen/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/OptionDocGen/Makefile.in -------------------------------------------------------------------------------- /examples/OptionDocGen/MyTMINLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/OptionDocGen/MyTMINLP.cpp -------------------------------------------------------------------------------- /examples/OptionDocGen/MyTMINLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/OptionDocGen/MyTMINLP.hpp -------------------------------------------------------------------------------- /examples/amplExamples/toy.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/examples/amplExamples/toy.mod -------------------------------------------------------------------------------- /experimental/Bcp/BB_cut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BB_cut.cpp -------------------------------------------------------------------------------- /experimental/Bcp/BB_cut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BB_cut.hpp -------------------------------------------------------------------------------- /experimental/Bcp/BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM.cpp -------------------------------------------------------------------------------- /experimental/Bcp/BM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM.hpp -------------------------------------------------------------------------------- /experimental/Bcp/BM.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM.par -------------------------------------------------------------------------------- /experimental/Bcp/BM_lp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM_lp.cpp -------------------------------------------------------------------------------- /experimental/Bcp/BM_lp_branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM_lp_branch.cpp -------------------------------------------------------------------------------- /experimental/Bcp/BM_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM_pack.cpp -------------------------------------------------------------------------------- /experimental/Bcp/BM_tm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/BM_tm.cpp -------------------------------------------------------------------------------- /experimental/Bcp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/Makefile.am -------------------------------------------------------------------------------- /experimental/Bcp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/Makefile.in -------------------------------------------------------------------------------- /experimental/Bcp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/README -------------------------------------------------------------------------------- /experimental/Bcp/ampl_bcp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Bcp/ampl_bcp.patch -------------------------------------------------------------------------------- /experimental/RobotBonmin/BonNWayChoose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/BonNWayChoose.cpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/BonNWayChoose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/BonNWayChoose.hpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/BonNWayObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/BonNWayObject.cpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/BonNWayObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/BonNWayObject.hpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/Makefile.am -------------------------------------------------------------------------------- /experimental/RobotBonmin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/Makefile.in -------------------------------------------------------------------------------- /experimental/RobotBonmin/Robot-bonmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/Robot-bonmin.cpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/RobotSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/RobotSetup.cpp -------------------------------------------------------------------------------- /experimental/RobotBonmin/RobotSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/RobotBonmin/RobotSetup.hpp -------------------------------------------------------------------------------- /experimental/Separable/BonHeuristicInnerApproximation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/BonHeuristicInnerApproximation.cpp -------------------------------------------------------------------------------- /experimental/Separable/BonHeuristicInnerApproximation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/BonHeuristicInnerApproximation.hpp -------------------------------------------------------------------------------- /experimental/Separable/BonOuterDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/BonOuterDescription.cpp -------------------------------------------------------------------------------- /experimental/Separable/BonOuterDescription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/BonOuterDescription.hpp -------------------------------------------------------------------------------- /experimental/Separable/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/Makefile.am -------------------------------------------------------------------------------- /experimental/Separable/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/Makefile.in -------------------------------------------------------------------------------- /experimental/Separable/Sepa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/Sepa.cpp -------------------------------------------------------------------------------- /experimental/Separable/SepaHeuristicInnerApproximation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaHeuristicInnerApproximation.cpp -------------------------------------------------------------------------------- /experimental/Separable/SepaHeuristicInnerApproximation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaHeuristicInnerApproximation.hpp -------------------------------------------------------------------------------- /experimental/Separable/SepaSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaSetup.cpp -------------------------------------------------------------------------------- /experimental/Separable/SepaSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaSetup.hpp -------------------------------------------------------------------------------- /experimental/Separable/SepaTMINLP2OsiLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaTMINLP2OsiLP.cpp -------------------------------------------------------------------------------- /experimental/Separable/SepaTMINLP2OsiLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/experimental/Separable/SepaTMINLP2OsiLP.hpp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/missing -------------------------------------------------------------------------------- /src/Algorithms/Ampl/BonAmplSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Ampl/BonAmplSetup.cpp -------------------------------------------------------------------------------- /src/Algorithms/Ampl/BonAmplSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Ampl/BonAmplSetup.hpp -------------------------------------------------------------------------------- /src/Algorithms/Ampl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Ampl/Makefile.am -------------------------------------------------------------------------------- /src/Algorithms/Ampl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Ampl/Makefile.in -------------------------------------------------------------------------------- /src/Algorithms/BonBabSetupBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonBabSetupBase.cpp -------------------------------------------------------------------------------- /src/Algorithms/BonBabSetupBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonBabSetupBase.hpp -------------------------------------------------------------------------------- /src/Algorithms/BonBonminSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonBonminSetup.cpp -------------------------------------------------------------------------------- /src/Algorithms/BonBonminSetup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonBonminSetup.hpp -------------------------------------------------------------------------------- /src/Algorithms/BonCbcLpStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonCbcLpStrategy.cpp -------------------------------------------------------------------------------- /src/Algorithms/BonCbcLpStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonCbcLpStrategy.hpp -------------------------------------------------------------------------------- /src/Algorithms/BonSolverHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonSolverHelp.cpp -------------------------------------------------------------------------------- /src/Algorithms/BonSolverHelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonSolverHelp.hpp -------------------------------------------------------------------------------- /src/Algorithms/BonSubMipSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonSubMipSolver.cpp -------------------------------------------------------------------------------- /src/Algorithms/BonSubMipSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/BonSubMipSolver.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonChooseVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonChooseVariable.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonChooseVariable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonChooseVariable.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonCurvBranchingSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonCurvBranchingSolver.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonCurvBranchingSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonCurvBranchingSolver.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonLpBranchingSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonLpBranchingSolver.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonLpBranchingSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonLpBranchingSolver.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonPseudoCosts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonPseudoCosts.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonPseudoCosts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonPseudoCosts.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonQpBranchingSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonQpBranchingSolver.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonQpBranchingSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonQpBranchingSolver.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonRandomChoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonRandomChoice.cpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/BonRandomChoice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/BonRandomChoice.hpp -------------------------------------------------------------------------------- /src/Algorithms/Branching/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/Makefile.am -------------------------------------------------------------------------------- /src/Algorithms/Branching/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Branching/Makefile.in -------------------------------------------------------------------------------- /src/Algorithms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Makefile.am -------------------------------------------------------------------------------- /src/Algorithms/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/Makefile.in -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonDummyHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonDummyHeuristic.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonDummyHeuristic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonDummyHeuristic.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonEcpCuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonEcpCuts.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonEcpCuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonEcpCuts.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonFpForMinlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonFpForMinlp.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonFpForMinlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonFpForMinlp.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOACutGenerator2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOACutGenerator2.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOACutGenerator2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOACutGenerator2.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOAMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOAMessages.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOAMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOAMessages.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaDecBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaDecBase.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaDecBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaDecBase.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaFeasChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaFeasChecker.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaFeasChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaFeasChecker.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaNlpOptim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaNlpOptim.cpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/BonOaNlpOptim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/BonOaNlpOptim.hpp -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/Makefile.am -------------------------------------------------------------------------------- /src/Algorithms/OaGenerators/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/OaGenerators/Makefile.in -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonArraysHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonArraysHelpers.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonLinearCutsGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonLinearCutsGenerator.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonLinearCutsGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonLinearCutsGenerator.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonOuterApprox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonOuterApprox.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonOuterApprox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonOuterApprox.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonQuadCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonQuadCut.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonQuadCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonQuadCut.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonQuadRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonQuadRow.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonQuadRow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonQuadRow.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMINLP2Quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMINLP2Quad.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMINLP2Quad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMINLP2Quad.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMINLPLinObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMINLPLinObj.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMINLPLinObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMINLPLinObj.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMatrix.cpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/BonTMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/BonTMatrix.hpp -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/Makefile.am -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/Makefile.in -------------------------------------------------------------------------------- /src/Algorithms/QuadCuts/next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Algorithms/QuadCuts/next -------------------------------------------------------------------------------- /src/Apps/BonMin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Apps/BonMin.cpp -------------------------------------------------------------------------------- /src/Apps/BonNodeSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Apps/BonNodeSolver.cpp -------------------------------------------------------------------------------- /src/Apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Apps/Makefile.am -------------------------------------------------------------------------------- /src/Apps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Apps/Makefile.in -------------------------------------------------------------------------------- /src/CbcBonmin/BonBabInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonBabInfos.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonBabInfos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonBabInfos.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbc.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbc.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbcNlpStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbcNlpStrategy.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbcNlpStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbcNlpStrategy.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbcNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbcNode.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonCbcNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonCbcNode.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonDiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonDiver.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonDiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonDiver.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonGuessHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonGuessHeuristic.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/BonGuessHeuristic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/BonGuessHeuristic.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonDummyPump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonDummyPump.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonDummyPump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonDummyPump.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonFixAndSolveHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonFixAndSolveHeuristic.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonFixAndSolveHeuristic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonFixAndSolveHeuristic.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDive.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDive.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveFractional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveFractional.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveFractional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveFractional.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIP.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIP.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIPFractional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIPFractional.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIPFractional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIPFractional.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIPVectorLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIPVectorLength.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveMIPVectorLength.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveMIPVectorLength.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveVectorLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveVectorLength.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicDiveVectorLength.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicDiveVectorLength.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicFPump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicFPump.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicFPump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicFPump.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicLocalBranching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicLocalBranching.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicLocalBranching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicLocalBranching.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicRINS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicRINS.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonHeuristicRINS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonHeuristicRINS.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonLocalSolverBasedHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonLocalSolverBasedHeuristic.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonLocalSolverBasedHeuristic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonLocalSolverBasedHeuristic.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonMilpRounding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonMilpRounding.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonMilpRounding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonMilpRounding.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonPumpForMinlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonPumpForMinlp.cpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/BonPumpForMinlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/BonPumpForMinlp.hpp -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/Makefile.am -------------------------------------------------------------------------------- /src/CbcBonmin/Heuristics/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Heuristics/Makefile.in -------------------------------------------------------------------------------- /src/CbcBonmin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Makefile.am -------------------------------------------------------------------------------- /src/CbcBonmin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/Makefile.in -------------------------------------------------------------------------------- /src/CbcBonmin/bonminamplinterface.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/CbcBonmin/bonminamplinterface.pc.in -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonAmplInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonAmplInterface.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonAmplInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonAmplInterface.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonAmplTMINLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonAmplTMINLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonAmplTMINLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonAmplTMINLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonSolReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonSolReader.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/BonSolReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/BonSolReader.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ampl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/Makefile.am -------------------------------------------------------------------------------- /src/Interfaces/Ampl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/Makefile.in -------------------------------------------------------------------------------- /src/Interfaces/Ampl/sos_kludge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ampl/sos_kludge.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonAuxInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonAuxInfos.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonAuxInfos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonAuxInfos.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonBoundsReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonBoundsReader.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonBoundsReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonBoundsReader.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonBranchingTQP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonBranchingTQP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonBranchingTQP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonBranchingTQP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonColReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonColReader.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonColReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonColReader.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonCurvatureEstimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonCurvatureEstimator.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonCurvatureEstimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonCurvatureEstimator.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonCutStrengthener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonCutStrengthener.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonCutStrengthener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonCutStrengthener.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonExitCodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonExitCodes.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonMsgUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonMsgUtils.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonOsiTMINLPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonOsiTMINLPInterface.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonOsiTMINLPInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonOsiTMINLPInterface.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonRegisteredOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonRegisteredOptions.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonRegisteredOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonRegisteredOptions.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonStartPointReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStartPointReader.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonStartPointReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStartPointReader.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonStdCInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStdCInterface.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonStdCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStdCInterface.h -------------------------------------------------------------------------------- /src/Interfaces/BonStdInterfaceTMINLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStdInterfaceTMINLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonStdInterfaceTMINLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStdInterfaceTMINLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonStrongBranchingSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStrongBranchingSolver.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonStrongBranchingSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonStrongBranchingSolver.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP2OsiLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP2OsiLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP2OsiLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP2OsiLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP2TNLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP2TNLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonTMINLP2TNLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTMINLP2TNLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTNLP2FPNLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTNLP2FPNLP.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonTNLP2FPNLP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTNLP2FPNLP.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTNLPSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTNLPSolver.cpp -------------------------------------------------------------------------------- /src/Interfaces/BonTNLPSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTNLPSolver.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonTypes.hpp -------------------------------------------------------------------------------- /src/Interfaces/BonminConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/BonminConfig.h -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonBqpdSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonBqpdSolver.cpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonBqpdSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonBqpdSolver.hpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonBqpdWarmStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonBqpdWarmStart.cpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonBqpdWarmStart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonBqpdWarmStart.hpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonFilterSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonFilterSolver.cpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonFilterSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonFilterSolver.hpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonFilterTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonFilterTypes.hpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonFilterWarmStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonFilterWarmStart.cpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/BonFilterWarmStart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/BonFilterWarmStart.hpp -------------------------------------------------------------------------------- /src/Interfaces/Filter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/Makefile.am -------------------------------------------------------------------------------- /src/Interfaces/Filter/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Filter/Makefile.in -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptInteriorWarmStarter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptInteriorWarmStarter.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptInteriorWarmStarter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptInteriorWarmStarter.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptSolver.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptSolver.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptWarmStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptWarmStart.cpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/BonIpoptWarmStart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/BonIpoptWarmStart.hpp -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/Makefile.am -------------------------------------------------------------------------------- /src/Interfaces/Ipopt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Ipopt/Makefile.in -------------------------------------------------------------------------------- /src/Interfaces/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Makefile.am -------------------------------------------------------------------------------- /src/Interfaces/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/Makefile.in -------------------------------------------------------------------------------- /src/Interfaces/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/config.h.in -------------------------------------------------------------------------------- /src/Interfaces/config_bonmin.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/config_bonmin.h.in -------------------------------------------------------------------------------- /src/Interfaces/config_bonmin_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/config_bonmin_default.h -------------------------------------------------------------------------------- /src/Interfaces/config_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/config_default.h -------------------------------------------------------------------------------- /src/Interfaces/configall_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/configall_system.h -------------------------------------------------------------------------------- /src/Interfaces/configall_system_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/src/Interfaces/configall_system_msc.h -------------------------------------------------------------------------------- /test/InterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/InterfaceTest.cpp -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/Makefile.in -------------------------------------------------------------------------------- /test/bonmin.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/bonmin.opt -------------------------------------------------------------------------------- /test/mytoy.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/mytoy.nl -------------------------------------------------------------------------------- /test/toy.mps.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-or/Bonmin/HEAD/test/toy.mps.gz --------------------------------------------------------------------------------