summaryrefslogtreecommitdiff
path: root/thirdparty/linux/include/coin/BonLpBranchingSolver.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/BonLpBranchingSolver.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/BonLpBranchingSolver.hpp')
-rw-r--r--thirdparty/linux/include/coin/BonLpBranchingSolver.hpp80
1 files changed, 80 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/BonLpBranchingSolver.hpp b/thirdparty/linux/include/coin/BonLpBranchingSolver.hpp
new file mode 100644
index 0000000..9e10172
--- /dev/null
+++ b/thirdparty/linux/include/coin/BonLpBranchingSolver.hpp
@@ -0,0 +1,80 @@
+// Copyright (C) 2006, 2007 International Business Machines
+// Corporation and others. All Rights Reserved.
+#ifndef BonLpBranchingSolver_H
+#define BonLpBranchingSolver_H
+
+#include "BonStrongBranchingSolver.hpp"
+#include "BonEcpCuts.hpp"
+
+namespace Bonmin
+{
+
+ /** Implementation of BonChooseVariable for curvature-based braching.
+ */
+
+ class LpBranchingSolver : public StrongBranchingSolver
+ {
+
+ public:
+
+ /// Constructor from setup
+ LpBranchingSolver (BabSetupBase *b);
+ /// Copy constructor
+ LpBranchingSolver (const LpBranchingSolver &);
+
+ /// Assignment operator
+ LpBranchingSolver & operator= (const LpBranchingSolver& rhs);
+
+ /// Destructor
+ virtual ~LpBranchingSolver ();
+
+ /// Called to initialize solver before a bunch of strong branching
+ /// solves
+ virtual void markHotStart(OsiTMINLPInterface* tminlp_interface);
+
+ /// Called to solve the current TMINLP (with changed bound information)
+ virtual TNLPSolver::ReturnStatus solveFromHotStart(OsiTMINLPInterface* tminlp_interface);
+
+ /// Called after all strong branching solves in a node
+ virtual void unmarkHotStart(OsiTMINLPInterface* tminlp_interface);
+
+ void setMaxCuttingPlaneIter(int num)
+ {
+ maxCuttingPlaneIterations_ = num;
+ }
+
+ static void registerOptions(Ipopt::SmartPtr<Bonmin::RegisteredOptions> roptions);
+
+ private:
+ /// Default Constructor
+ LpBranchingSolver ();
+
+ /// Linear solver
+ OsiSolverInterface* lin_;
+
+ /// Warm start object for linear solver
+ CoinWarmStart* warm_;
+
+ /// Ecp cut generate
+ EcpCuts* ecp_;
+
+ /// Number of maximal ECP cuts
+ int maxCuttingPlaneIterations_;
+
+ /// absolute tolerance for ECP cuts
+ double abs_ecp_tol_;
+
+ /// relative tolerance for ECP cuts
+ double rel_ecp_tol_;
+
+
+ enum WarmStartMethod {
+ Basis=0 /** Use basis*/,
+ Clone /** clone problem*/
+ };
+ /// Way problems are warm started
+ WarmStartMethod warm_start_mode_;
+ };
+
+}
+#endif