summaryrefslogtreecommitdiff
path: root/thirdparty/linux/include/coin/BonPseudoCosts.hpp
diff options
context:
space:
mode:
authorGeorgey2017-07-05 11:40:43 +0530
committerGeorgey2017-07-05 11:40:43 +0530
commit938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (patch)
treeb343c0ee5609433c80e0de1db8b6886c9126dc2d /thirdparty/linux/include/coin/BonPseudoCosts.hpp
parent5b72577efe080c5294b32d804e4d26351fef30bc (diff)
downloadFOSSEE-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/BonPseudoCosts.hpp')
-rw-r--r--thirdparty/linux/include/coin/BonPseudoCosts.hpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/BonPseudoCosts.hpp b/thirdparty/linux/include/coin/BonPseudoCosts.hpp
new file mode 100644
index 0000000..b7934e5
--- /dev/null
+++ b/thirdparty/linux/include/coin/BonPseudoCosts.hpp
@@ -0,0 +1,91 @@
+// (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 : 04/12/2007
+
+#ifndef BonPseudoCosts_H
+#define BonPseudoCosts_H
+
+#include "OsiChooseVariable.hpp"
+namespace Bonmin
+{
+
+ class PseudoCosts: public OsiPseudoCosts
+ {
+ public:
+ /** Default constructor.*/
+ PseudoCosts();
+
+ /** Copy constructor.*/
+ PseudoCosts(const PseudoCosts & rhs);
+
+ /** Assignment operator const version.*/
+ PseudoCosts & operator=(const PseudoCosts&rhs);
+#if 0
+ /** Acces upTotalChange.*/
+ inline double * upTotalChange()
+ {
+ return upTotalChange_;
+ }
+
+ /** Acces downTotalChange.*/
+ inline double * downTotalChange()
+ {
+ return downTotalChange_;
+ }
+
+ /** Acces upNumber.*/
+ inline int * upNumber()
+ {
+ return upNumber_;
+ }
+
+ /** Acces downNumber.*/
+ inline int * downNumber()
+ {
+ return downNumber_;
+ }
+
+ /** Acces upTotalChange.*/
+ inline const double * upTotalChange() const
+ {
+ return upTotalChange_;
+ }
+
+ /** Acces downTotalChange.*/
+ inline const double * downTotalChange() const
+ {
+ return downTotalChange_;
+ }
+
+ /** Acces upNumber.*/
+ inline const int * upNumber() const
+ {
+ return upNumber_;
+ }
+
+ /** Acces downNumber.*/
+ inline const int * downNumber() const
+ {
+ return downNumber_;
+ }
+
+ /** Access number objects.*/
+ inline int numberObjects() const
+ {
+ return numberObjects_;
+ }
+#endif
+ /** Add a pseudo cost information.*/
+ void addInfo(int way, double originalObj, double originalInfeas,
+ double newObj, double newInfeas, int status);
+
+ };
+
+}/* End Bonmin namespace.*/
+
+#endif