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

qiskit.optimization.problems.Constraint

class Constraint(quadratic_program, name, sense, rhs)[소스]

Abstract Constraint Class.

Initializes the constraint.

매개변수
  • 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)[소스]

Initializes the constraint.

매개변수
  • 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 of ConstraintSense

abstract evaluate(x)[소스]

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

매개변수

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

반환 형식

float

반환값

The left-hand-side of the constraint.

property name

Returns the name of the constraint.

반환 형식

str

반환값

The name of the constraint.

property quadratic_program

Returns the parent QuadraticProgram.

반환 형식

Any

반환값

The parent QuadraticProgram.

property rhs

Returns the right-hand-side of the constraint.

반환 형식

float

반환값

The right-hand-side of the constraint.

property sense

Returns the sense of the constraint.

반환 형식

ConstraintSense

반환값

The sense of the constraint.