solver
Model.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
13 
14 namespace solver {
15 
16  class Model
17  {
18  public:
19  Model(){}
20  ~Model(){}
21 
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); }
29  ExitCode optimize();
30 
31  ConicProblem& getProblem() { return conic_problem_; }
32  const ConicProblem& getProblem() const { return conic_problem_; }
33  SolverSetting& getSetting() { return conic_problem_.getSetting(); }
34  const SolverSetting& getSetting() const { return conic_problem_.getSetting(); }
35 
36  private:
37  ConicProblem conic_problem_;
38  NcvxBnBSolver ncvx_bnb_solver_;
39  };
40 }
Definition: Model.hpp:16
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: Cone.hpp:20
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