MCPcopy Create free account
hub / github.com/numpy/numpy / IsUnderFlow

Method IsUnderFlow

numpy/core/src/common/float_status.hpp:90–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88 return (fpstatus_ & kOverflow) != 0;
89 }
90 constexpr bool IsUnderFlow() const
91 {
92 return (fpstatus_ & kUnderflow) != 0;
93 }
94 static void RaiseDivideByZero()
95 {
96 if constexpr (kDivideByZero != 0) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected