xpress.var
Class representing optimization variables.
Variables are created using problem.addVariable or problem.addVariables.
name
|
Name of the variable.
|
||||||||||||
vartype
|
Type of the variable, one among the following:
|
||||||||||||
lb
|
Lower bound of the variable.
|
||||||||||||
ub
|
Upper bound of the variable.
|
||||||||||||
threshold
|
Threshold for semi-continuous, semi-integer, and partially integer variables.
|
xpress.var
|
|||||||||||||||||||||||
Synopsis
|
x = xpress.var(name=None, lb=0, ub=xpress.infinity, threshold=1, vartype=xpress.continuous)
(deprecated)
Use problem.addVariable to add linked variables to the problem instead. |
||||||||||||||||||||||
Arguments
|
|
||||||||||||||||||||||
Description
|
Unlinked variables are not tied to a problem but may exist globally in a Python program. In order for them to be included into a problem, they have to be explicitly added to that problem using
problem.addVariable. Unlinked variables are deprecated.
|
||||||||||||||||||||||
Example
|
One or more variables (or vectors of variables) can be added to a problem with the addVariable method:
v = xp.var(lb=-1, ub=2) m.addVariable (v) x = [xp.var(ub=10) for i in range(10)] y = [xp.var(ub=10, vartype=xp.integer) for i in range(10)] m.addVariable(x,y) |
||||||||||||||||||||||
|
© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.