Opened 10 years ago

Closed 10 years ago

#7415 closed Bugs (fixed)

Wrong domain error detection of atanh for positive arguments

Reported by: Oleksii <oleksii.taran@…> Owned by: John Maddock
Milestone: To Be Determined Component: math
Version: Boost Development Trunk Severity: Problem
Keywords: Cc:

Description

atanh resolves arguments >1 not as 'out of domain', but as 'positive infinity'

Sample code:

#include <boost/math/special_functions/atanh.hpp>

int main()
{
  ::boost::math::atanh(2); // should throw 'domain_error' exception, but throws 'overflow' exception
  
  return 0;
}

Patch with fix attached

Attachments (1)

boost_atanh_fix.patch (1.1 KB ) - added by Oleksii <oleksii.taran@…> 10 years ago.
patch with fix

Download all attachments as: .zip

Change History (2)

by Oleksii <oleksii.taran@…>, 10 years ago

Attachment: boost_atanh_fix.patch added

patch with fix

comment:1 by John Maddock, 10 years ago

Resolution: fixed
Status: newclosed

(In [80692]) Fix atanh error handling. Add extra tests to catch above bug. Fixes #7415.

Note: See TracTickets for help on using tickets.