![]() |
slope 0.29.0
|
Namespace containing constants used in the slope library. More...
Variables | |
constexpr double | EPSILON = 1e-10 |
Small value used for floating-point comparisons to handle precision issues. | |
constexpr double | P_MIN = 1e-9 |
Minimum allowed probability value to avoid numerical underflow. | |
constexpr double | P_MAX = 1.0 - P_MIN |
Maximum allowed probability value to avoid numerical issues near 1.0. | |
constexpr double | POS_INF = std::numeric_limits<double>::max() |
Representation of positive infinity using maximum double value. | |
constexpr double | NEG_INF = std::numeric_limits<double>::lowest() |
Representation of negative infinity using lowest double value. | |
Namespace containing constants used in the slope library.
This namespace contains various constants used in the slope library, such as machine epsilon, minimum and maximum probabilities, and positive and negative infinity.
|
constexpr |
Small value used for floating-point comparisons to handle precision issues.
Definition at line 27 of file constants.h.
|
constexpr |
Representation of negative infinity using lowest double value.
Definition at line 39 of file constants.h.
|
constexpr |
Maximum allowed probability value to avoid numerical issues near 1.0.
Definition at line 33 of file constants.h.
|
constexpr |
Minimum allowed probability value to avoid numerical underflow.
Definition at line 30 of file constants.h.
|
constexpr |
Representation of positive infinity using maximum double value.
Definition at line 36 of file constants.h.