diff options
author | Georgey | 2017-07-05 11:40:43 +0530 |
---|---|---|
committer | Georgey | 2017-07-05 11:40:43 +0530 |
commit | 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (patch) | |
tree | b343c0ee5609433c80e0de1db8b6886c9126dc2d /thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp | |
parent | 5b72577efe080c5294b32d804e4d26351fef30bc (diff) | |
download | FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.gz FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.bz2 FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.zip |
Added linux shared libraries and header files for int and ecos functions
Diffstat (limited to 'thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp b/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp new file mode 100644 index 0000000..4c80719 --- /dev/null +++ b/thirdparty/linux/include/coin/BonLinearCutsGenerator.hpp @@ -0,0 +1,75 @@ +// (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 <list> + +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<Coin::SmartPtr<CuttingMethod> > methods_; +}; + +}/* Ends Bonmin namespace.*/ + +#endif + |