Epigraph
Convex Optimization in C++
Public Member Functions | Public Attributes | Friends | List of all members
cvx::Scalar Class Reference

Public Member Functions

 Scalar (int x)
 
 Scalar (double x)
 
 Scalar (double *x)
 
Scalaroperator+= (const Scalar &other)
 
Scalaroperator-= (const Scalar &other)
 
Scalaroperator*= (const Scalar &other)
 
Scalaroperator/= (const Scalar &other)
 
Scalar operator- () const
 
bool operator== (const cvx::Scalar &other) const
 
double evaluate () const
 
size_t getOrder () const
 
bool isNorm () const
 
 operator double () const
 
friend internal::Variable::operator Scalar () const
 

Public Attributes

friend OptimizationProblem
 

Friends

Scalar operator+ (const Scalar &lhs, const Scalar &rhs)
 
Scalar operator- (const Scalar &lhs, const Scalar &rhs)
 
Scalar operator* (const Scalar &lhs, const Scalar &rhs)
 
Scalar operator/ (const Scalar &lhs, const Scalar &rhs)
 
Scalar sqrt (const Scalar &scalar)
 
Scalar square (const Scalar &scalar)
 
Scalar abs2 (const Scalar &scalar)
 
Constraint equalTo (const Scalar &lhs, const Scalar &rhs)
 Create an equality constraint: lhs == rhs. More...
 
Constraint lessThan (const Scalar &lhs, const Scalar &rhs)
 Create a less than or equal constraint: lhs <= rhs. More...
 
Constraint greaterThan (const Scalar &lhs, const Scalar &rhs)
 Create a greater than or equal constraint: lhs >= rhs. More...
 
Constraint box (const Scalar &lower, const Scalar &middle, const Scalar &upper)
 Create a box constraint: lower <= middle <= upper. More...
 
std::ostream & operator<< (std::ostream &os, const Scalar &scalar)
 

Friends And Related Function Documentation

◆ box

Constraint box ( const Scalar lower,
const Scalar middle,
const Scalar upper 
)
friend

Create a box constraint: lower <= middle <= upper.

Parameters
lowerThe lower bound
middleThe middle term
upperThe upper bound
Returns
Constraint The constraint to pass to addConstraint()

◆ equalTo

Constraint equalTo ( const Scalar lhs,
const Scalar rhs 
)
friend

Create an equality constraint: lhs == rhs.

Parameters
lhsThe left hand side
rhsThe right hand side
Returns
Constraint The constraint to pass to addConstraint()

◆ greaterThan

Constraint greaterThan ( const Scalar lhs,
const Scalar rhs 
)
friend

Create a greater than or equal constraint: lhs >= rhs.

Parameters
lhsThe left hand side
rhsThe right hand side
Returns
Constraint The constraint to pass to addConstraint()

◆ lessThan

Constraint lessThan ( const Scalar lhs,
const Scalar rhs 
)
friend

Create a less than or equal constraint: lhs <= rhs.

Parameters
lhsThe left hand side
rhsThe right hand side
Returns
Constraint The constraint to pass to addConstraint()

The documentation for this class was generated from the following file: