We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc36f7a + 534358d commit 17379d7Copy full SHA for 17379d7
docs/source/attribute/xpress.md
@@ -97,6 +97,9 @@
97
* - IISUpperBound
98
- ✅
99
- ❌
100
+* - ReducedCost
101
+ - ✅
102
+ - ❌
103
:::
104
105
### Supported [constraint attribute](#pyoptinterface.ConstraintAttribute)
src/pyoptinterface/_src/xpress.py
@@ -279,7 +279,7 @@ def get_rawstatusstring(model):
279
VariableAttribute.IISUpperBound: lambda model, v: model.get_variable_upperbound_IIS(
280
v
281
),
282
- # VariableAttribute.??: lambda model, v: model.get_variable_rc(v),
+ VariableAttribute.ReducedCost: lambda model, v: model.get_variable_rc(v),
283
}
284
285
variable_attribute_set_func_map = (
0 commit comments