diff options
author | Harpreet | 2016-09-03 00:36:51 +0530 |
---|---|---|
committer | Harpreet | 2016-09-03 00:36:51 +0530 |
commit | a0d9443af147e949c1e6a01ac24749d12593ec5b (patch) | |
tree | 1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /thirdparty/linux/include/coin/BonPseudoCosts.hpp | |
parent | 4b64cf486f5c999fd8167758cae27839f3b50848 (diff) | |
download | FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2 FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip |
cbcintlinprog added
Diffstat (limited to 'thirdparty/linux/include/coin/BonPseudoCosts.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/BonPseudoCosts.hpp | 91 |
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 |