Opened 7 years ago

Closed 7 years ago

#12112 closed Bugs (fixed)

cpp_dec_float: assigning double(-infinity) drops the negative

Reported by: Jason Rhinelander <jason@…> Owned by: John Maddock
Milestone: To Be Determined Component: multiprecision
Version: Boost 1.60.0 Severity: Problem
Keywords: Cc:

Description

Initializing (or assigning) negative infinity to a cpp_dec_float assigns positive infinity instead of negative infinity.

The problem seems to be that cpp_dec_float.hpp, in operator=(long double a), does:

   if((boost::math::isinf)(a))
      return *this = inf();

but I think that should instead be (I have not tested this):

    if((boost::math::isinf)(a)) {
       *this = inf();
       if (a < 0) negate();
       return *this;
    }

Change History (1)

comment:1 by John Maddock, 7 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.