Underflow

потеря значимости одна из ошибок при операциях с плавающей точкой [запятой] (floating point underflow), когда результат настолько мал, что не может быть представлен в имеющейся разрядной сетке компьютера (сравни overflow). В зависимости от типа процессора, языка программирования, библиотек времени исполнения обработка этой ошибки может осуществляться разными способами, в том числе с использованием аппаратного прерывания, бита статуса и т.д. Смотри также: exponent, interrupt, run-time system

Англо-русский словарь компьютерных терминов

Underflow

вчт антипереполнение, потеря значимости

Англо-русский научно-технический словарь

Underflow

1) подрусловый поток 2) поток подземных вод 3) [горнодобывающая промышленность] сгущенный продукт (мокрой классификации); нижний продукт (гидроциклона); мелкий продукт (классификатора) 4) нижний сход (с сита) 5) [вычислительная техника] потеря значимости

Англо-русский политехнический словарь

Underflow

(or "floating point underflow", "floating underflow", after "overflow") A condition that can occur when the result of a floating-point operation would be smaller in magnitude (closer to zero, either positive or negative) than the smallest quantity representable. Underflow is actually (negative) overflow of the exponent of the floating point quantity. For example, an eight-bit twos complement exponent can represent multipliers of 2^-128 to 2^127. A result less than 2^-128 would cause underflow. Depending on the processor, the programming language and the run-time system, underflow may set a status bit, raise an exception or generate a hardware interrupt or some combination of these effects. Alternatively, it may just be ignored and zero substituted for the unrepresentable value, though this might lead to a later divide by zero error which cannot be so easily ignored.

Free Online Dictionary of Computing