Get and set the objective, constraints, or size metrics (get only) of a problem.
objective(object)objective(object)<- value
constraints(object)constraints(object)<- value
size_metrics(object)
Arguments
object: A Problem object.
value: The value to assign to the slot.
Returns
For getter functions, the requested slot of the object. x <- Variable() prob <- Problem(Minimize(x^2), list(x >= 5)) objective(prob) constraints(prob) size_metrics(prob)