qiskit.optimization.problems.Variable¶
-
class
Variable
(quadratic_program, name, lowerbound=0, upperbound=1e+20, vartype=<VarType.CONTINUOUS: 0>)[source]¶ Representation of a variable.
Creates a new Variable.
The variables is exposed by the top-level QuadraticProgram class in QuadraticProgram.variables. This constructor is not meant to be used externally.
- Paramètres
quadratic_program (
Any
) – The parent QuadraticProgram.name (
str
) – The variable name.lowerbound (
Union
[float
,int
]) – The variable lowerbound.upperbound (
Union
[float
,int
]) – The variable upperbound.vartype (
VarType
) – The variable type.
- Lève
QiskitOptimizationError – if lowerbound is greater than upperbound.
-
__init__
(quadratic_program, name, lowerbound=0, upperbound=1e+20, vartype=<VarType.CONTINUOUS: 0>)[source]¶ Creates a new Variable.
The variables is exposed by the top-level QuadraticProgram class in QuadraticProgram.variables. This constructor is not meant to be used externally.
- Paramètres
quadratic_program (
Any
) – The parent QuadraticProgram.name (
str
) – The variable name.lowerbound (
Union
[float
,int
]) – The variable lowerbound.upperbound (
Union
[float
,int
]) – The variable upperbound.vartype (
VarType
) – The variable type.
- Lève
QiskitOptimizationError – if lowerbound is greater than upperbound.
Methods
__init__
(quadratic_program, name[, …])Creates a new Variable.
as_tuple
()Returns a tuple corresponding to this variable.
Attributes
Returns the lowerbound of the variable.
Returns the name of the variable.
Returns the parent QuadraticProgram.
Returns the upperbound of the variable.
Returns the type of the variable.
-
Type
¶ alias de
VarType
-
as_tuple
()[source]¶ Returns a tuple corresponding to this variable.
- Type renvoyé
Tuple
[str
,Union
[float
,int
],Union
[float
,int
],VarType
]- Renvoie
A tuple corresponding to this variable consisting of name, lowerbound, upperbound and variable type.
-
property
lowerbound
¶ Returns the lowerbound of the variable.
- Type renvoyé
Union
[float
,int
]- Renvoie
The lower bound of the variable.
-
property
name
¶ Returns the name of the variable.
- Type renvoyé
str
- Renvoie
The name of the variable.
-
property
quadratic_program
¶ Returns the parent QuadraticProgram.
- Type renvoyé
Any
- Renvoie
The parent QuadraticProgram.
-
property
upperbound
¶ Returns the upperbound of the variable.
- Type renvoyé
Union
[float
,int
]- Renvoie
The upperbound of the variable.
-
property
vartype
¶ Returns the type of the variable.
- Type renvoyé
VarType
- Renvoie
The variable type.