Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.problems.Variable

class Variable(quadratic_program, name, lowerbound=0, upperbound=1e+20, vartype=<VarType.CONTINUOUS: 0>)[소스]

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 (Union[float, int]) – The variable lowerbound.

  • upperbound (Union[float, int]) – The variable upperbound.

  • vartype (VarType) – The variable type.

예외

QiskitOptimizationError – if lowerbound is greater than upperbound.

__init__(quadratic_program, name, lowerbound=0, upperbound=1e+20, vartype=<VarType.CONTINUOUS: 0>)[소스]

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 (Union[float, int]) – The variable lowerbound.

  • upperbound (Union[float, int]) – The variable upperbound.

  • vartype (VarType) – The variable type.

예외

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

lowerbound

Returns the lowerbound of the variable.

name

Returns the name of the variable.

quadratic_program

Returns the parent QuadraticProgram.

upperbound

Returns the upperbound of the variable.

vartype

Returns the type of the variable.

Type

alias of VarType

as_tuple()[소스]

Returns a tuple corresponding to this variable.

반환 형식

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

반환값

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

property lowerbound

Returns the lowerbound of the variable.

반환 형식

Union[float, int]

반환값

The lower bound of the variable.

property name

Returns the name of the variable.

반환 형식

str

반환값

The name of the variable.

property quadratic_program

Returns the parent QuadraticProgram.

반환 형식

Any

반환값

The parent QuadraticProgram.

property upperbound

Returns the upperbound of the variable.

반환 형식

Union[float, int]

반환값

The upperbound of the variable.

property vartype

Returns the type of the variable.

반환 형식

VarType

반환값

The variable type.