Skip to content

Deprecation in xpress Python interface #533

@finozzifa

Description

@finozzifa

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.

problem.getObjVal() 

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions