summaryrefslogtreecommitdiff
path: root/newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:36:51 +0530
committerHarpreet2016-09-03 00:36:51 +0530
commita0d9443af147e949c1e6a01ac24749d12593ec5b (patch)
tree1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp
parent4b64cf486f5c999fd8167758cae27839f3b50848 (diff)
downloadFOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip
cbcintlinprog added
Diffstat (limited to 'newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp')
-rw-r--r--newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp91
1 files changed, 0 insertions, 91 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp b/newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp
deleted file mode 100644
index b7934e5..0000000
--- a/newstructure/thirdparty/linux/include/coin/BonPseudoCosts.hpp
+++ /dev/null
@@ -1,91 +0,0 @@
-// (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