Dear Johan,
I'm solving a "small scale" robust linear optimization problem. I have ~200 decision variables and ~20 uncertain variables w. The uncertainty set is a simple box, i.e. norm(w, inf) <= 1, uncertain(w)
The robust optimization theories (papers by Nemirovski and Shapiro) tell us RLO with box uncertainty set is equivalent with a linear program (by introducing aux variables), we have explicit equivalent representations of the robust counterpart.
However, YALMIP tries to enumerate all 131073 vertices (btw, 2^17 = 131074) of the box...and takes a long time to derive equivalent forms. Are there any options for YALMIP to use a smarter way?
Can I use sdpsettings('robust.lplp','duality') ? This is much faster and the solution looks correct.

Thanks!