summaryrefslogtreecommitdiff
path: root/thirdparty/linux/include/coin1/CoinPresolveForcing.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/coin1/CoinPresolveForcing.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/coin1/CoinPresolveForcing.hpp')
-rw-r--r--thirdparty/linux/include/coin1/CoinPresolveForcing.hpp61
1 files changed, 61 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin1/CoinPresolveForcing.hpp b/thirdparty/linux/include/coin1/CoinPresolveForcing.hpp
new file mode 100644
index 0000000..ee5a641
--- /dev/null
+++ b/thirdparty/linux/include/coin1/CoinPresolveForcing.hpp
@@ -0,0 +1,61 @@
+/* $Id: CoinPresolveForcing.hpp 1498 2011-11-02 15:25:35Z mjs $ */
+// Copyright (C) 2002, International Business Machines
+// Corporation and others. All Rights Reserved.
+// This code is licensed under the terms of the Eclipse Public License (EPL).
+
+#ifndef CoinPresolveForcing_H
+#define CoinPresolveForcing_H
+
+#include "CoinPresolveMatrix.hpp"
+
+/*!
+ \file
+*/
+
+#define IMPLIED_BOUND 7
+
+/*! \class forcing_constraint_action
+ \brief Detect and process forcing constraints and useless constraints
+
+ A constraint is useless if the bounds on the variables prevent the constraint
+ from ever being violated.
+
+ A constraint is a forcing constraint if the bounds on the constraint force
+ the value of an involved variable to one of its bounds. A constraint can
+ force more than one variable.
+*/
+class forcing_constraint_action : public CoinPresolveAction {
+ forcing_constraint_action();
+ forcing_constraint_action(const forcing_constraint_action& rhs);
+ forcing_constraint_action& operator=(const forcing_constraint_action& rhs);
+public:
+ struct action {
+ const int *rowcols;
+ const double *bounds;
+ int row;
+ int nlo;
+ int nup;
+ };
+private:
+ const int nactions_;
+ // actions_ is owned by the class and must be deleted at destruction
+ const action *const actions_;
+
+public:
+ forcing_constraint_action(int nactions,
+ const action *actions,
+ const CoinPresolveAction *next) :
+ CoinPresolveAction(next),
+ nactions_(nactions), actions_(actions) {}
+
+ const char *name() const;
+
+ static const CoinPresolveAction *presolve(CoinPresolveMatrix * prob,
+ const CoinPresolveAction *next);
+
+ void postsolve(CoinPostsolveMatrix *prob) const;
+
+ virtual ~forcing_constraint_action();
+};
+
+#endif