summaryrefslogtreecommitdiff
path: root/newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:34:27 +0530
committerHarpreet2016-09-03 00:34:27 +0530
commit4b64cf486f5c999fd8167758cae27839f3b50848 (patch)
treed9d06639fb7fa61aef59be0363655e4747105ec7 /newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp
parentd19794fb80a271a4c885ed90f97cfc12baa012f2 (diff)
downloadFOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.gz
FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.bz2
FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.zip
Structure updated and intqpipopt files added
Diffstat (limited to 'newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp')
-rw-r--r--newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp b/newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp
new file mode 100644
index 0000000..19436b3
--- /dev/null
+++ b/newstructure/thirdparty/linux/include/coin/CbcGeneral.hpp
@@ -0,0 +1,60 @@
+// $Id: CbcGeneral.hpp 1899 2013-04-09 18:12:08Z stefan $
+// 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).
+
+// Edwin 11/10/2009-- carved out of CbcBranchActual
+
+#ifndef CbcGeneral_H
+#define CbcGeneral_H
+
+#include "CbcBranchBase.hpp"
+/** Define a catch all class.
+ This will create a list of subproblems
+*/
+
+
+class CbcGeneral : public CbcObject {
+
+public:
+
+ // Default Constructor
+ CbcGeneral ();
+
+ /** Useful constructor
+ Just needs to point to model.
+ */
+ CbcGeneral (CbcModel * model);
+
+ // Copy constructor
+ CbcGeneral ( const CbcGeneral &);
+
+ /// Clone
+ virtual CbcObject * clone() const = 0;
+
+ // Assignment operator
+ CbcGeneral & operator=( const CbcGeneral& rhs);
+
+ // Destructor
+ ~CbcGeneral ();
+
+ /// Infeasibility - large is 0.5
+ virtual double infeasibility(const OsiBranchingInformation * info,
+ int &preferredWay) const;
+
+ using CbcObject::feasibleRegion ;
+ /// This looks at solution and sets bounds to contain solution
+ virtual void feasibleRegion() = 0;
+
+ /// Creates a branching object
+ virtual CbcBranchingObject * createCbcBranch(OsiSolverInterface * solver, const OsiBranchingInformation * info, int way) ;
+
+ /// Redoes data when sequence numbers change
+ virtual void redoSequenceEtc(CbcModel * model, int numberColumns, const int * originalColumns) = 0;
+
+protected:
+ /// data
+};
+
+#endif
+