blob: 9e101727e51de244e7ceff77115a83ca0bff8806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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
|