solver
Var.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <memory>
13 
14 namespace rt_solver {
15 
16  template<int Max_Ineq_Rows, int Max_Eq_Rows, int Num_OptVars>
17  class RtModel;
18 
19 }
20 
21 namespace solver {
22 
23  enum class VarType {Binary, Continuous};
24 
25  struct VarStorage
26  {
27  int col_no_;
28  VarType type_;
29  double lb_, ub_, value_, guess_;
30  };
31 
36  class Var
37  {
38  public:
39  Var() : var_storage_(nullptr) {};
40 
41  int get(SolverIntParam param) const;
42  double get(SolverDoubleParam param) const;
43  void set(SolverIntParam param, int value);
44  void set(SolverDoubleParam param, double value);
45 
46  friend class LinExpr;
47  friend class ConicProblem;
48 
49  template<int Max_Ineq_Rows, int Max_Eq_Rows, int Num_OptVars>
50  friend class rt_solver::RtModel;
51 
52  private:
53  Var(int col_no, const VarType& type, double lb, double ub, double guess=0.0);
54 
55  private:
56  std::shared_ptr<VarStorage> var_storage_;
57  };
58 }
Definition: Var.hpp:25
Definition: Var.hpp:17
SolverIntParam
Definition: SolverParams.hpp:14
SolverDoubleParam
Definition: SolverParams.hpp:47
Definition: Var.hpp:14
Main class to construct a second-order cone optimization problem.
Definition: ConicProblem.hpp:26
Definition: Cone.hpp:20
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