solver
NcvxBnBSolver.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <solver/interface/Var.hpp>
15 
16 namespace solver {
17 
19  {
20  public:
21  NcvxBnBSolver(){}
22  ~NcvxBnBSolver(){}
23 
24  ExitCode optimize();
25  void initialize(ConicProblem& conic_problem);
26  OptimizationVector& optimalVector() { return opt_; }
27 
28  private:
29  ExitCode exitcode();
30  void loadSolution();
31  void storeSolution();
32  void initializeRootNode();
33  int selectNodeToExplore();
34  double getProblemLowerBound();
35  int optimilityCheck(int node_id);
36  void createBranches(int node_id);
37  void updateNodeBounds(int node_id);
38  void selectPartitionVariable(int& partition_id, double& partition_val);
39  void updateProblemData(const Eigen::Ref<const Eigen::VectorXi>& bool_node_id);
40 
41  inline ConicProblem& getProblem() { return *conic_problem_; }
42  inline OptimizationInfo& getInfo() { return optimization_info_; }
43 
44  private:
45  ConicProblem* conic_problem_;
46  OptimizationInfo optimization_info_;
47 
48  ExitCode opt_status_;
49  OptimizationVector opt_;
50  std::vector<node> nodes_;
51  Eigen::VectorXi binvars_ids_;
52  Eigen::VectorXi binvars_vec_id_;
53  Eigen::MatrixXi binvars_mat_id_;
54  int nbin_vars_, iteration_, node_id_;
55  double prob_upper_bound_, prob_lower_bound_;
56  };
57 }
ExitCode exitcode()
Generate an exit condition for the problem, either full or reduced precision.
Definition: NcvxBnBSolver.cpp:164
double getProblemLowerBound()
This function computes the lower bound out of the nodes explored so far.
Definition: NcvxBnBSolver.cpp:44
void createBranches(int node_id)
Function to create branches for the new variable to explore.
Definition: NcvxBnBSolver.cpp:14
int optimilityCheck(int node_id)
Convergence check in BnB routine search.
Definition: NcvxBnBSolver.cpp:156
void storeSolution()
Stores the solution of the node with best statistics so far.
Definition: NcvxBnBSolver.cpp:92
void selectPartitionVariable(int &partition_id, double &partition_val)
Function to select the variable to explore to refine the space search.
Definition: NcvxBnBSolver.cpp:53
Helper class to define an optimization vector, including primal and dual variables, and variables to render the optimization problem homogeneous.
Definition: Cone.hpp:322
Main class to construct a second-order cone optimization problem.
Definition: ConicProblem.hpp:26
void initializeRootNode()
Initialize the root node of BnB solver.
Definition: NcvxBnBSolver.cpp:180
ECOS - Embedded Conic Solver.
Definition: Cone.hpp:20
ExitCode optimize()
Definition: NcvxBnBSolver.cpp:193
void loadSolution()
Loads back the solution of the node with best statistics.
Definition: NcvxBnBSolver.cpp:99
Definition: NcvxBnBSolver.hpp:18
Helper class that contains information about the status of the optimization problem.
Definition: CvxInfoPrinter.hpp:35
ECOS - Embedded Conic Solver.
int selectNodeToExplore()
Function to select the node to be explored.
Definition: NcvxBnBSolver.cpp:29
void updateProblemData(const Eigen::Ref< const Eigen::VectorXi > &bool_node_id)
function to update problem data from node to explore
Definition: NcvxBnBSolver.cpp:66