CVXPY
Maximize
  min(x + y, None, False)
Subject To
 29: x <= 1.0
 33: y <= 1.0
Bounds
 x free
 y free
End
----------------------------------------
AFTER COMPILATION
Minimize
 Obj: +1 x_0
Subject to
 c1: -1 x_0 -1 x_1 -1 x_2 <= +0
 c2: +1 x_1 <= +1
 c3: +1 x_2 <= +1
Bounds
 x_0 free
 x_1 free
 x_2 free
End
----------------------------------------
SCIP
Maximize
 Obj: +1 x +1 y
Subject to
 29: +1 x <= +1
 33: +1 y <= +1
Bounds
 x free
 y free
End