Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.problems.QuadraticObjective

class QuadraticObjective(quadratic_program, constant=0.0, linear=None, quadratic=None, sense=<ObjSense.MINIMIZE: 1>)[ソース]

Representation of quadratic objective function of the form: constant + linear * x + x * quadratic * x.

Constructs a quadratic objective function.

パラメータ
  • quadratic_program (Any) – The parent quadratic program.

  • constant (float) – The constant offset of the objective.

  • linear (Union[ndarray, spmatrix, List[float], Dict[Union[int, str], float], None]) – The coefficients of the linear part of the objective.

  • quadratic (Union[ndarray, spmatrix, List[List[float]], Dict[Tuple[Union[int, str], Union[int, str]], float], None]) – The coefficients of the quadratic part of the objective.

  • sense (ObjSense) – The optimization sense of the objective.

__init__(quadratic_program, constant=0.0, linear=None, quadratic=None, sense=<ObjSense.MINIMIZE: 1>)[ソース]

Constructs a quadratic objective function.

パラメータ
  • quadratic_program (Any) – The parent quadratic program.

  • constant (float) – The constant offset of the objective.

  • linear (Union[ndarray, spmatrix, List[float], Dict[Union[int, str], float], None]) – The coefficients of the linear part of the objective.

  • quadratic (Union[ndarray, spmatrix, List[List[float]], Dict[Tuple[Union[int, str], Union[int, str]], float], None]) – The coefficients of the quadratic part of the objective.

  • sense (ObjSense) – The optimization sense of the objective.

Methods

__init__(quadratic_program[, constant, …])

Constructs a quadratic objective function.

evaluate(x)

Evaluate the quadratic objective for given variable values.

evaluate_gradient(x)

Evaluate the gradient of the quadratic objective for given variable values.

Attributes

constant

Returns the constant part of the objective function.

linear

Returns the linear part of the objective function.

quadratic

Returns the quadratic part of the objective function.

quadratic_program

Returns the parent QuadraticProgram.

sense

Returns the sense of the objective function.

Sense

ObjSense のエイリアス

property constant

Returns the constant part of the objective function.

戻り値の型

float

戻り値

The constant part of the objective function.

evaluate(x)[ソース]

Evaluate the quadratic objective for given variable values.

パラメータ

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

戻り値の型

float

戻り値

The value of the quadratic objective given the variable values.

evaluate_gradient(x)[ソース]

Evaluate the gradient of the quadratic objective for given variable values.

パラメータ

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

戻り値の型

ndarray

戻り値

The value of the gradient of the quadratic objective given the variable values.

property linear

Returns the linear part of the objective function.

戻り値の型

LinearExpression

戻り値

The linear part of the objective function.

property quadratic

Returns the quadratic part of the objective function.

戻り値の型

QuadraticExpression

戻り値

The quadratic part of the objective function.

property quadratic_program

Returns the parent QuadraticProgram.

戻り値の型

Any

戻り値

The parent QuadraticProgram.

property sense

Returns the sense of the objective function.

戻り値の型

ObjSense

戻り値

The sense of the objective function.