Variable#

class Variable(quadratic_program, name, lowerbound=0, upperbound=1e+20, vartype=VarType.CONTINUOUS)[ソース]#

ベースクラス: QuadraticProgramElement

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.

パラメータ:
  • quadratic_program (Any) – The parent QuadraticProgram.

  • name (str) – The variable name.

  • lowerbound (float | int) – The variable lowerbound.

  • upperbound (float | int) – The variable upperbound.

  • vartype (VarType) – The variable type.

例外:

QiskitOptimizationError – if lowerbound is greater than upperbound.

Attributes

lowerbound#

Returns the lowerbound of the variable.

戻り値:

The lower bound of the variable.

name#

Returns the name of the variable.

戻り値:

The name of the variable.

quadratic_program#

Returns the parent QuadraticProgram.

戻り値:

The parent QuadraticProgram.

upperbound#

Returns the upperbound of the variable.

戻り値:

The upperbound of the variable.

vartype#

Returns the type of the variable.

戻り値:

The variable type.

Methods

as_tuple()[ソース]#

Returns a tuple corresponding to this variable.

戻り値:

A tuple corresponding to this variable consisting of name, lowerbound, upperbound and variable type.

戻り値の型:

Tuple[str, float | int, float | int, VarType]