From 4b64cf486f5c999fd8167758cae27839f3b50848 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Sat, 3 Sep 2016 00:34:27 +0530 Subject: Structure updated and intqpipopt files added --- .../linux/include/coin/BonLinearCutsGenerator.hpp | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) create 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 new file mode 100644 index 0000000..4c80719 --- /dev/null +++ b/newstructure/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 + +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