Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 04 Mar 2019 08:47:22 +0000
From:      bugzilla-noreply@freebsd.org
To:        office@FreeBSD.org
Subject:   [Bug 236188] devel/boost-libs and BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
Message-ID:  <bug-236188-25061-uYRA5IeMcM@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-236188-25061@https.bugs.freebsd.org/bugzilla/>
References:  <bug-236188-25061@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236188

Jan Beich <jbeich@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |powerpc@FreeBSD.org

--- Comment #2 from Jan Beich <jbeich@FreeBSD.org> ---
Can someone on powerpc (preferably, 32bit) check the following sample?

$ cat a.cc
// from https://github.com/lballabio/QuantLib/pull/597#issuecomment-4667168=
05
#include <iostream>
#include <boost/math/distributions/non_central_chi_squared.hpp>

using namespace boost::math;

int main() {
    const double q =3D 0.3142;

    std::cout << std::setprecision(16)=20
        << quantile(
            non_central_chi_squared_distribution<double>(3.0,1.0),q)=20
        << std::endl;
}

$ pkg install boost-libs
$ c++ a.cc -isystem/usr/local/include
$ ./a.out
2.034589723572673

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-236188-25061-uYRA5IeMcM>