37 void updateNodeBounds(
int node_id);
41 inline ConicProblem& getProblem() {
return *conic_problem_; }
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_;
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.
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