SOCP modeling in Julia?

Rather than posting latex, post simplified Julia code. Take a read of the first post of Please read: make it easier to help you - #81.

# To model ||x||_2 <= t, use
model = Model()
@variable(model, x[1:2])
@variable(model, t)
@constraint(model, [t; x] in SecondOrderCone())
2 Likes