CVXPY
Minimize
  Sum(X, None, False)
Subject To
 28: 1.0 <= min(X, None, False) + min(Y, None, False)
 33: Y == 1.0
Bounds
 X free
 Y free
End
----------------------------------------
AFTER COMPILATION
OBJECTIVE
  Sense            : minimize
VARIABLES
  [continuous] <x_0>: obj=1, original bounds=[-inf,+inf]
  [continuous] <x_1>: obj=1, original bounds=[-inf,+inf]
  [continuous] <x_2>: obj=0, original bounds=[-inf,+inf]
  [continuous] <x_3>: obj=0, original bounds=[-inf,+inf]
  [continuous] <x_4>: obj=0, original bounds=[-inf,+inf]
  [continuous] <x_5>: obj=0, original bounds=[-inf,+inf]
CONSTRAINTS
  [linear] <c1>: <x_3>[C] == 1;
  [linear] <c2>: <x_4>[C] == 1;
  [linear] <c3>:  -<x_0>[C] -<x_2>[C] <= 0;
  [linear] <c4>:  -<x_1>[C] -<x_2>[C] <= 0;
  [linear] <c5>:  -<x_3>[C] -<x_5>[C] <= 0;
  [linear] <c6>:  -<x_4>[C] -<x_5>[C] <= 0;
  [linear] <c7>: <x_2>[C] +<x_5>[C] <= -1;
END
----------------------------------------
SCIP
OBJECTIVE
  Sense            : minimize
VARIABLES
  [continuous] <X_0>: obj=1, original bounds=[-inf,+inf]
  [continuous] <X_1>: obj=1, original bounds=[-inf,+inf]
  [continuous] <min_1>: obj=0, original bounds=[-inf,+inf]
  [continuous] <Y_0>: obj=0, original bounds=[-inf,+inf]
  [continuous] <Y_1>: obj=0, original bounds=[-inf,+inf]
  [continuous] <min_2>: obj=0, original bounds=[-inf,+inf]
CONSTRAINTS
  [linear] <min_1_0>: <X_0>[C] -<min_1>[C] >= 0;
  [linear] <min_1_1>: <X_1>[C] -<min_1>[C] >= 0;
  [linear] <min_2_0>: <Y_0>[C] -<min_2>[C] >= 0;
  [linear] <min_2_1>: <Y_1>[C] -<min_2>[C] >= 0;
  [linear] <28>: <min_1>[C] +<min_2>[C] >= 1;
  [linear] <33_0>: <Y_0>[C] == 1;
  [linear] <33_1>: <Y_1>[C] == 1;
END