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/CglClique.hpp | |
parent | 5b72577efe080c5294b32d804e4d26351fef30bc (diff) | |
download | symphony-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.gz symphony-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.bz2 symphony-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.zip |
Added linux shared libraries and header files for int and ecos functions
Diffstat (limited to 'thirdparty/linux/include/coin/CglClique.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/CglClique.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/thirdparty/linux/include/coin/CglClique.hpp b/thirdparty/linux/include/coin/CglClique.hpp index 5b47b40..288052d 100644 --- a/thirdparty/linux/include/coin/CglClique.hpp +++ b/thirdparty/linux/include/coin/CglClique.hpp @@ -1,4 +1,4 @@ -// $Id: CglClique.hpp 1119 2013-04-06 20:24:18Z stefan $ +// $Id: CglClique.hpp 1330 2016-01-26 19:35:16Z forrest $ // Copyright (C) 2000, International Business Machines // Corporation and others. All Rights Reserved. // This code is licensed under the terms of the Eclipse Public License (EPL). @@ -86,6 +86,8 @@ public: void setMinViolation(double minviol) { petol = minviol; } double getMinViolation() const { return petol; } + /// Maximum number of binaries for looking at all + inline void setMaxNumber(int value) { maxNumber_ = value; } private: @@ -157,6 +159,8 @@ protected: /** The primal tolerance in the solverinterface. */ double petol; + /// Maximum number of binaries for looking at all + int maxNumber_; /** data for the star clique algorithm */ |