Neslib.MultiPrecision icon indicating copy to clipboard operation
Neslib.MultiPrecision copied to clipboard

NAN returned when number expected

Open chuacw opened this issue 9 months ago • 0 comments

uses System.SysUtils, Neslib.MultiPrecision;
var
  LQD: QuadDouble;
  LValue: string;
begin
  LQD := QuadDouble(Extended.MaxValue);
  LValue := LQD.ToString;
end;

LValue is not expected to be 'NAN', but it is.

chuacw avatar Apr 10 '25 12:04 chuacw