BinaryMatrix

class BinaryMatrix

ベースクラス: Matrix

Methods

__init__

evaluate

evaluate

to_poly

to_poly

Attributes

constant

constant property

linear

linear property

quadratic

quadratic property

variable_array

variable_array property

__add__(self, arg: Constraint | ConstraintList, /) Model

__add__

パラメータ:

arg (Constraint | ConstraintList)

戻り値の型:

Model

__eq__(self, arg: object, /) bool

__eq__

パラメータ:

arg (object)

戻り値の型:

bool

__init__(*args, **kwargs)
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__ne__(self, arg: object, /) bool

__ne__

パラメータ:

arg (object)

戻り値の型:

bool

__radd__(self, arg: Constraint | ConstraintList, /) Model

__radd__

パラメータ:

arg (Constraint | ConstraintList)

戻り値の型:

Model

__repr__(self) str

__repr__

戻り値の型:

str

__str__(self) str

__str__

戻り値の型:

str

evaluate(self, values: Values) float
evaluate(self, values: Values, default: float) float

evaluate

Overload 1.

Args:
  • values (amplify.Values)

Returns:

float:

Overload 2.

Args:
  • values (amplify.Values)

  • default (float)

Returns:

float:

to_poly(self) Poly

to_poly

戻り値の型:

Poly

__deprecated__ = 'BinaryMatrix is deprecated since amplify v1.0.0 and will no longer support in the near future.\nUse Matrix instead. Please see the migration guide for details: https://amplify.fixstars.com/docs/amplify/v1/migration.html'
__dict__ = mappingproxy({'__module__': 'amplify._backward', '__dict__': <attribute '__dict__' of 'BinaryMatrix' objects>, '__weakref__': <attribute '__weakref__' of 'BinaryMatrix' objects>, '__doc__': None, '__new__': <staticmethod(<function Matrix.__new__>)>, '__init_subclass__': <function BinaryMatrix.__init_subclass__>, '__deprecated__': 'BinaryMatrix is deprecated since amplify v1.0.0 and will no longer support in the near future.\nUse Matrix instead. Please see the migration guide for details: https://amplify.fixstars.com/docs/amplify/v1/migration.html', '__annotations__': {}})
__weakref__

list of weak references to the object (if defined)

property constant

constant property

戻り値の型:

float

property linear

linear property

戻り値の型:

ndarray

property quadratic

quadratic property

戻り値の型:

ndarray

property variable_array

variable_array property

戻り値の型:

PolyArray[Dim]