Constants
This page describes some of the constants used in libsemigroups_pybind11.
Constant types
- class LimitMax
The type of
LIMIT_MAX.This class is the type of the constant value
LIMIT_MAX, and appears as such in type annotations inlibsemigroups_pybind11.
- class NegativeInfinity
The type of
NEGATIVE_INFINITY.This class is the type of the constant value
NEGATIVE_INFINITY, and appears as such in type annotations inlibsemigroups_pybind11.
- class PositiveInfinity
The type of
POSITIVE_INFINITY.This class is the type of the constant value
POSITIVE_INFINITY, and appears as such in type annotations inlibsemigroups_pybind11.
Constant values
- LIMIT_MAX
This value represents the maximum value that certain function parameters can have. This value has type
LimitMax.LIMIT_MAXis comparable via==,!=,<,>with any integral value, and is comparable to any other constant via==and!=, but not by<and>.
- NEGATIVE_INFINITY = -∞
This value represents \(-\infty\) and has type
NegativeInfinity.NEGATIVE_INFINITYis comparable via==,!=,<,>with any integer and withPOSITIVE_INFINITY, and is comparable to any other constant via==and!=.
- POSITIVE_INFINITY = +∞
This value represents \(+\infty\) and has type
PositiveInfinity.POSITIVE_INFINITYis comparable via==,!=,<,>with any integral and withNEGATIVE_INFINITY, and is comparable to any other constant via==and!=, but not by<and>.