CVXPY
Minimize
  Sum(X, None, False)
Subject To
 52: 1.0 <= min(X + [ 1. -2.], None, False)
Bounds
 X free
End
----------------------------------------
AFTER COMPILATION
Minimize
 Obj: +1 x_0 +1 x_1
Subject to
 c1: -1 x_0 -1 x_2 <= +1
 c2: -1 x_1 -1 x_2 <= -2
 c3: +1 x_2 <= -1
Bounds
 x_0 free
 x_1 free
 x_2 free
End
----------------------------------------
SCIP
Minimize
 Obj: +1 X_0 +1 X_1
Subject to
 min_1_0: +1 X_0 -1 min_1 >= -1
 min_1_1: +1 X_1 -1 min_1 >= +2
 52: +1 min_1 >= +1
Bounds
 X_0 free
 X_1 free
 min_1 free
End