From a0d9443af147e949c1e6a01ac24749d12593ec5b Mon Sep 17 00:00:00 2001 From: Harpreet Date: Sat, 3 Sep 2016 00:36:51 +0530 Subject: cbcintlinprog added --- .../linux/include/coin/BonLinearCutsGenerator.hpp | 75 ---------------------- 1 file changed, 75 deletions(-) delete mode 100644 newstructure/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp (limited to 'newstructure/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp') diff --git a/newstructure/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp b/newstructure/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp deleted file mode 100644 index 4c80719..0000000 --- a/newstructure/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp +++ /dev/null @@ -1,75 +0,0 @@ -// (C) Copyright International Business Machines Corporation 2007 -// All Rights Reserved. -// This code is published under the Eclipse Public License. -// -// Authors : -// Pierre Bonami, International Business Machines Corporation -// -// Date : 10/06/2007 - -#ifndef BonLinearCutsGenerator_H -#define BonLinearCutsGenerator_H - -#include "CglCutGenerator.hpp" -#include "CoinSmartPtr.hpp" -#include "BonOuterApprox.hpp" -#include "BonBonminSetup.hpp" -#include - -namespace Bonmin { -class LinearCutsGenerator : public CglCutGenerator { - public: - /** Type for cut generation method with its frequency and string identification. */ - struct CuttingMethod : public Coin::ReferencedObject - { - int frequency; - std::string id; - CglCutGenerator * cgl; - bool atSolution; - bool normal; - CuttingMethod(): - atSolution(false), - normal(true) - {} - - CuttingMethod(const CuttingMethod & other): - frequency(other.frequency), - id(other.id), - cgl(other.cgl), - atSolution(other.atSolution), - normal(other.normal) - {} - }; - LinearCutsGenerator(): - CglCutGenerator(), - methods_(){ - } - - - LinearCutsGenerator(const LinearCutsGenerator & other): - CglCutGenerator(other), - methods_(other.methods_){ - } - - CglCutGenerator * clone() const { - return new LinearCutsGenerator(*this); - } - - virtual ~LinearCutsGenerator(){ - } - - bool needsOptimalBasis() { return false;} - - void initialize(BabSetupBase& s); - - void generateCuts(const OsiSolverInterface &solver, OsiCuts &cs, - const CglTreeInfo info = CglTreeInfo()); - - private: - std::list > methods_; -}; - -}/* Ends Bonmin namespace.*/ - -#endif - -- cgit