File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -771,6 +771,17 @@ const LessThanIndicatorOne{T} =
771
771
const LessThanIndicatorZero{T} =
772
772
MOI. Indicator{MOI. ACTIVATE_ON_ZERO,MOI. LessThan{T}}
773
773
774
+ const GreaterThanIndicatorOne{T} =
775
+ MOI. Indicator{MOI. ACTIVATE_ON_ONE,MOI. GreaterThan{T}}
776
+
777
+ const GreaterThanIndicatorZero{T} =
778
+ MOI. Indicator{MOI. ACTIVATE_ON_ZERO,MOI. GreaterThan{T}}
779
+
780
+ const EqualToIndicatorOne{T} = MOI. Indicator{MOI. ACTIVATE_ON_ONE,MOI. EqualTo{T}}
781
+
782
+ const EqualToIndicatorZero{T} =
783
+ MOI. Indicator{MOI. ACTIVATE_ON_ZERO,MOI. EqualTo{T}}
784
+
774
785
@model (
775
786
Model,
776
787
(MOI. ZeroOne, MOI. Integer),
@@ -824,6 +835,10 @@ const LessThanIndicatorZero{T} =
824
835
MOI. SOS2,
825
836
LessThanIndicatorOne,
826
837
LessThanIndicatorZero,
838
+ GreaterThanIndicatorOne,
839
+ GreaterThanIndicatorZero,
840
+ EqualToIndicatorOne,
841
+ EqualToIndicatorZero,
827
842
MOI. Table,
828
843
MOI. BinPacking,
829
844
MOI. HyperRectangle,
You can’t perform that action at this time.
0 commit comments