Constructs a convex optimization problem from an objective and a list of
constraints. Use psolve to solve the problem.
Usage
Problem(objective, constraints = list())Known limitations
Problems must contain at least one
Variable. Zero-variable problems (e.g., minimizing a constant) will cause an internal error in the reduction pipeline.
Examples
x <- Variable(2)
prob <- Problem(Minimize(sum_entries(x)), list(x >= 1))
