(!****************************************************** Mosel Example Problems ====================== Example model for the Robust Optimization with Xpress white paper - This file purposely terminates with an error, - completed version: overlapping_polyhedral2.mos - (c) 2014 Fair Isaac Corporation *******************************************************!) model Careful uses "mmrobust" ! Load the robust library declarations x, y: mpvar e, f : uncertain end-declarations x*e <= 1 y*f <= 1 e >= 0 f >= 0 e+f <= 1 maximize(x+y) writeln("x = ", getsol(x), " y = ", getsol(y)) end-model