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/BonCbcLpStrategy.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/BonCbcLpStrategy.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/BonCbcLpStrategy.hpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/BonCbcLpStrategy.hpp b/thirdparty/linux/include/coin/BonCbcLpStrategy.hpp new file mode 100644 index 0000000..6d16e91 --- /dev/null +++ b/thirdparty/linux/include/coin/BonCbcLpStrategy.hpp @@ -0,0 +1,45 @@ +// (C) Copyright Carnegie Mellon University 2006 +// All Rights Reserved. +// This code is published under the Eclipse Public License. +// +// Authors : +// Pierre Bonami, Carnegie Mellon University, +// +// Date : 03/15/2006 + + +#ifndef CbcOaStrategy_HPP +#define CbcOaStrategy_HPP + +#include "CbcStrategy.hpp" +#include <string> +#include "BonBabSetupBase.hpp" +namespace Bonmin +{ + /** A class to setup default strategy for Cbc specifying which cut generators to use.*/ + class CbcStrategyChooseCuts : public CbcStrategyDefault { + public: + /** Default constructor.*/ + CbcStrategyChooseCuts(); + /** Constructor with a setup. */ + CbcStrategyChooseCuts(BabSetupBase &s, const std::string & prefix); + /** Copy constructor.*/ + CbcStrategyChooseCuts(const CbcStrategyChooseCuts &other); + /** Virtual copy constructor.*/ + CbcStrategy * clone() const{ + return new CbcStrategyChooseCuts(*this); + } + /** Setup strategy.*/ + void setup(BabSetupBase &s, const std::string &prefix); + + /// Setup cut generators + virtual void setupCutGenerators(CbcModel & model); + + private: + /** Generators frequencies.*/ + int gen_freqs_[6]; + /** Flag to say which cut generators to use.*/ + int genFlag_; + }; +} +#endif |