
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Create and solve Mathematical Optimization problems like the following:
min x1^2 + 2 x2
s.t. x1 + 3 x2 >= 4
-10 <= x1 <= 10
x1 in Z
x2 >= 0
with just a few lines of code:
import xpress as xp
p = xp.problem(name='myexample') # problem name (optional)
x1 = p.addVariable(vartype=xp.integer, name='x1', lb=-10, ub=10)
x2 = p.addVariable(name='x2')
p.setObjective(x1**2 + 2*x2) # objective function
p.addConstraint(x1 + 3*x2 >= 4) # one or more constraints
p.optimize()
print ("solution: {0} = {1}; {2} = {3}".format (x1.name, p.getSolution(x1), x2.name, p.getSolution(x2)))
With the xpress
module, one can create and solve optimization problems using the Python® programming language and the FICO Xpress Optimizer library. The module allows for
The Xpress Python interface allows for creating, handling, and solving all problems that can be solved with the FICO-Xpress library: Linear Programming (LP), Quadratic Programming (QP), Second-Order Conic Programming (SOCP), and their mixed-integer extensions: MILP, MIQP, MIQCQP, MISOCP, together with general nonlinear and mixed-integer nonlinear.
The Xpress Python interface can be downloaded from PyPI and from Anaconda. Run
pip install xpress
to install from PyPI, and
conda install -c fico-xpress xpress
to install from the Conda repository.
The downloaded package contains: a folder with several examples of usages of the module, with varying degrees of difficulty; a directory license
containing the Xpress Community License; and a directory doc
with the manual in PDF version---the full HTML documentation for the Xpress Optimizer's library, including the Python interface with its example, is also available at the FICO Xpress Optimization Help page.
If you do not have any FICO Xpress license, the community license will be recognized by the module and no further action is needed. If you do have a license, for instance located in /users/johndoe/xpauth.xpr
, make sure to set the global environment variable XPRESS
to point to the folder containing the xpauth.xpr
file, i.e. XPRESS=/user/johndoe
.
For a list of supported versions and their end of support dates, please see https://www.fico.com/en/product-support/support-level-software-release. Customers can download selected older versions of the package from the Xpress client area site by clicking on the Archived Downloads link.
The Xpress software is governed by the Xpress Shrinkwrap License Agreement. When downloading the package, you accept the license terms. A copy of the Xpress Shrinkwrap License is stored in the file LICENSE.txt
in the dist-info
directory of the Xpress module.
This package includes the community license of Xpress, see the licensing options overview for more details.
"Python" is a registered trademark of the Python Software Foundation. "FICO" is a registered trademark of Fair Isaac Corporation in the United States and may be a registered trademark of Fair Isaac Corporation in other countries. Other product and company names herein may be trademarks of their respective owners.
Copyright (C) Fair Isaac 1983-2025
FAQs
FICO Xpress Optimizer Python interface
We found that xpress demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.