CVXPY
Maximize
  x + y
Subject To
 16: maximum(x, y, 1.0) <= 3.0
Bounds
 x free
 y free
End
----------------------------------------
AFTER COMPILATION
Minimize
 Obj: -1 x_0 -1 x_1
Subject to
 c1: +1 x_0 -1 x_2 <= +0
 c2: +1 x_1 -1 x_2 <= +0
 c3: -1 x_2 <= -1
 c4: +1 x_2 <= +3
Bounds
 x_0 free
 x_1 free
 x_2 free
End
----------------------------------------
SCIP
Maximize
 Obj: +1 x_0 +1 y
Subject to
 maximum_1_0_0: +1 maximum_1_0 -1 x_0 >= +0
 maximum_1_1_0: +1 maximum_1_0 -1 y >= +0
 maximum_1_2_0: +1 maximum_1_0 >= +1
 16_0: +1 maximum_1_0 <= +3
Bounds
 x_0 free
 y free
 maximum_1_0 free
End