solver
|
Helper class to ease the construction of a quadratic expression (e.g. More...
#include <Exprs.hpp>
Public Member Functions | |
double | getValue () const |
void | addLinTerm (const LinExpr &lexpr) |
void | clear () |
void | addQuaTerm (double coeff, const LinExpr &lexpr) |
LinExpr & | lexpr () |
std::string & | sense () |
bool & | trustRegion () |
std::vector< LinExpr > & | qexpr () |
std::vector< double > & | coeffs () |
bool & | softConstraint () |
std::vector< Var > & | extraVars () |
const LinExpr & | lexpr () const |
const std::string & | sense () const |
const bool & | trustRegion () const |
const std::vector< LinExpr > & | qexpr () const |
const std::vector< double > & | coeffs () const |
const bool & | softConstraint () const |
const std::vector< Var > & | extraVars () const |
const Var & | getVar (int qid, int lid) const |
Private Attributes | |
LinExpr | lexpr_ |
std::string | sense_ |
std::vector< double > | coeffs_ |
std::vector< LinExpr > | qexpr_ |
std::vector< Var > | extra_vars_ |
bool | trust_region_ |
bool | soft_constraint_ |
Helper class to ease the construction of a quadratic expression (e.g.
sum_i (a_i*x + b_i)^2 + (c*x + d))