Deprecation for getObjVal
According to the FICO Xpress Python Interface available here, the method problem.getObjVal will be deprecated. The documentation suggests to perform the following substitution.
with
problem.attributes.objval
We use the method in linopy here.
Deprecation for getProbStatusString
According to the FICO Xpress Python Interface available here, the method problem.getProbStatusString will be deprecated. The documentation suggests to perform the following substitution.
problem.getProbStatusString()
with
roblem.attributes.solvestatus and problem.attributes.solstatus
We use the method in linopy here.
Deprecation for
getObjValAccording to the FICO Xpress Python Interface available here, the method
problem.getObjValwill be deprecated. The documentation suggests to perform the following substitution.with
We use the method in linopy here.
Deprecation for
getProbStatusStringAccording to the FICO Xpress Python Interface available here, the method
problem.getProbStatusStringwill be deprecated. The documentation suggests to perform the following substitution.with
We use the method in linopy here.