Nick
Nick
For future reference, I found that I had to explicitly specify the return type with MPFR: ``` auto f = [](const Real& x)->Real { return 5*x + 7; }; ```...
@duhadler : The issue for `tanh_sinh` is now fixed. I'll leave this issue open since there is a broader issue of adding tests for MPFR types that needs to be...
I propose we put the `[[deprecated("Please use the move constructor instead")]]` tag on this constructor which would help both performance and help avoid the segfault.
Agreed; I think it's not idiomatic. Adding the deprecation would move this to C++-14 compatibility only though; I don't think it's possible to change the current behavior. @jzmaddock : Would...
@ksoni-1258 : Making the code listed about work is as much as I understand as well . . .
Clone all of boost: ``` $ git clone --recursive https://github.com/boostorg/boost.git ```
@ksoni-1258 : Go ahead and work on it!
Write a main.cpp; you don't need to compile everything because the library is header only. I put my `main.cpp` in `boost/libs/math`; e.g., ``` $ git clone --recursive https://github.com/boostorg/boost.git $ cd...
This is a class, templated on a `Real` type (say, `float`, or `double`). The integer is the order of accuracy. The class inherits from `gauss_detail`. Rainer Kress's "Numerical Analysis" is...
[Here's](https://github.com/boostorg/math/pull/154) one of them.