[Bug 236188] devel/boost-libs and BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
| Newsgroups | gmane.os.freebsd.devel.ppc |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236188 Jan Beich <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Jan Beich <[email protected]> --- Can someone on powerpc (preferably, 32bit) check the following sample? $ cat a.cc // from https://github.com/lballabio/QuantLib/pull/597#issuecomment-466716805 #include <iostream> #include <boost/math/distributions/non_central_chi_squared.hpp> using namespace boost::math; int main() { const double q = 0.3142; std::cout << std::setprecision(16) << quantile( non_central_chi_squared_distribution<double>(3.0,1.0),q) << std::endl; } $ pkg install boost-libs $ c++ a.cc -isystem/usr/local/include $ ./a.out 2.034589723572673 -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ppc To unsubscribe, send any mail to "[email protected]"