Expr create expressions, which can be used later for problem creation.

Expr(x)

Arguments

x

expression to be created.

Examples

# NOT RUN {
    convex_setup()
    x <- Variable(2)
    x1 <- Expr(x + 1)
# }