22 void clean() { conic_problem_.clean(); }
23 Var addVar(
const VarType& type,
double lb,
double ub,
double guess=0.0) {
return conic_problem_.addVar(type, lb, ub, guess); }
24 void addLinConstr(
const LinExpr& lhs,
const std::string sense,
const LinExpr& rhs) { conic_problem_.addLinConstr(lhs, sense, rhs); }
25 void addSocConstr(
const DCPQuadExpr& qexpr,
const std::string sense,
const LinExpr& lexpr) { conic_problem_.addSocConstr(qexpr, sense, lexpr); }
26 void addQuaConstr(
const DCPQuadExpr& qexpr,
const std::string sense,
const LinExpr& expr,
const QuadConstrApprox& qapprox = QuadConstrApprox::None ) { conic_problem_.addQuaConstr(qexpr, sense, expr, qapprox); }
27 void configSetting(
const std::string cfg_file,
const std::string stg_vars_yaml =
"solver_variables") { conic_problem_.configSetting(cfg_file, stg_vars_yaml); }
28 void setObjective(
const DCPQuadExpr& qexpr,
const LinExpr& expr) { conic_problem_.setObjective(qexpr, expr); }
32 const ConicProblem& getProblem()
const {
return conic_problem_; }
33 SolverSetting& getSetting() {
return conic_problem_.getSetting(); }
34 const SolverSetting& getSetting()
const {
return conic_problem_.getSetting(); }
Helper class to ease the construction of a quadratic expression (e.g.
Definition: Exprs.hpp:100
Main class to construct a second-order cone optimization problem.
Definition: ConicProblem.hpp:26
Class that provides access to all environment variables required by the solver.
Definition: SolverSetting.hpp:43
Definition: NcvxBnBSolver.hpp:18
Helper class to define an optimization variable, used in the construction of linear and quadratic exp...
Definition: Var.hpp:36
Helper class to ease the construction of a linear expression (e.g.
Definition: Exprs.hpp:19