German
Sprachen
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.problems.Constraint

class Constraint(quadratic_program, name, sense, rhs)[Quellcode]

Abstract Constraint Class.

Initializes the constraint.

Parameter
  • quadratic_program (Any) – The parent QuadraticProgram.

  • name (str) – The name of the constraint.

  • sense (ConstraintSense) – The sense of the constraint.

  • rhs (float) – The right-hand-side of the constraint.

__init__(quadratic_program, name, sense, rhs)[Quellcode]

Initializes the constraint.

Parameter
  • quadratic_program (Any) – The parent QuadraticProgram.

  • name (str) – The name of the constraint.

  • sense (ConstraintSense) – The sense of the constraint.

  • rhs (float) – The right-hand-side of the constraint.

Methods

__init__(quadratic_program, name, sense, rhs)

Initializes the constraint.

evaluate(x)

Evaluate left-hand-side of constraint for given values of variables.

Attributes

name

Returns the name of the constraint.

quadratic_program

Returns the parent QuadraticProgram.

rhs

Returns the right-hand-side of the constraint.

sense

Returns the sense of the constraint.

Sense

Alias von ConstraintSense

abstract evaluate(x)[Quellcode]

Evaluate left-hand-side of constraint for given values of variables.

Parameter

x (Union[ndarray, List, Dict[Union[int, str], float]]) – The values to be used for the variables.

Rückgabetyp

float

Rückgabe

The left-hand-side of the constraint.

property name

Returns the name of the constraint.

Rückgabetyp

str

Rückgabe

The name of the constraint.

property quadratic_program

Returns the parent QuadraticProgram.

Rückgabetyp

Any

Rückgabe

The parent QuadraticProgram.

property rhs

Returns the right-hand-side of the constraint.

Rückgabetyp

float

Rückgabe

The right-hand-side of the constraint.

property sense

Returns the sense of the constraint.

Rückgabetyp

ConstraintSense

Rückgabe

The sense of the constraint.