16 template<
int Max_Ineq_Rows,
int Max_Eq_Rows,
int Num_OptVars>
23 enum class VarType {Binary, Continuous};
29 double lb_, ub_, value_, guess_;
39 Var() : var_storage_(
nullptr) {};
49 template<
int Max_Ineq_Rows,
int Max_Eq_Rows,
int Num_OptVars>
53 Var(
int col_no,
const VarType& type,
double lb,
double ub,
double guess=0.0);
56 std::shared_ptr<VarStorage> var_storage_;
SolverIntParam
Definition: SolverParams.hpp:14
SolverDoubleParam
Definition: SolverParams.hpp:47
Main class to construct a second-order cone optimization problem.
Definition: ConicProblem.hpp:26
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