solver
BnBSolver.hpp
Go to the documentation of this file.
1 
12 #pragma once
13 
14 #include <solver/interface/Var.hpp>
16 
17 namespace solver {
18 
19  enum class Decision { One = 1, Zero = 0, Undefined = -1 };
20  enum class Status { NotSolved, SolvedBranchable, SolvedNonBranchable };
21 
22  struct node {
23  Status status_;
24  int partition_id_;
25  double lower_bound_, upper_bound_, partition_val_;
26  };
27 
28  class BnBSolver
29  {
30  public:
31  BnBSolver(){}
32  ~BnBSolver(){}
33 
34  ExitCode optimize();
35  OptimizationVector& optimalVector() { return opt_; }
36  void initialize(InteriorPointSolver& interior_point_solver,
37  const std::vector< std::shared_ptr<Var> >& binary_variables);
38 
39  private:
40  ExitCode exitcode();
41  void loadSolution();
42  void storeSolution();
43  void initializeRootNode();
44  int selectNodeToExplore();
45  double getProblemLowerBound();
46  int optimilityCheck(int node_id);
47  void createBranches(int node_id);
48  void updateNodeBounds(int node_id);
49  void selectPartitionVariable(int& partition_id, double& partition_val);
50  void updateProblemData(const Eigen::Ref<const Eigen::VectorXi>& bool_node_id);
51 
52  inline OptimizationInfo& getInfo() { return optimization_info_; }
53  inline InteriorPointSolver& getSolver() { return *interior_point_solver_; }
54 
55  private:
56  OptimizationInfo optimization_info_;
57  InteriorPointSolver* interior_point_solver_;
58 
59  ExitCode opt_status_;
60  OptimizationVector opt_;
61  std::vector<node> nodes_;
62  Eigen::VectorXi binvars_ids_;
63  Eigen::VectorXi binvars_vec_id_;
64  Eigen::MatrixXi binvars_mat_id_;
65  int nbin_vars_, iteration_, node_id_;
66  double prob_upper_bound_, prob_lower_bound_;
67  };
68 }
Helper class to define an optimization vector, including primal and dual variables, and variables to render the optimization problem homogeneous.
Definition: Cone.hpp:322
Definition: BnBSolver.hpp:22
Main class that implements an Interior Point Solver for Second-Order Cones.
Definition: IPSolver.hpp:31
Definition: Cone.hpp:20
Helper class that contains information about the status of the optimization problem.
Definition: CvxInfoPrinter.hpp:35
ECOS - Embedded Conic Solver.
Definition: BnBSolver.hpp:28