- Drop patches accepted upstream
- Drop previously backported patches
- Drop obsolete patches
- Enable hadoop/hdfs support for all architectures
* libhdfs is now available for more architectures than ix86 and x86_64
- Enable building on aarch64
- Rename the python packages to python2-root and python3-root
- New sub-packages: python{2,3}-jupyroot, python{2,3}-jsmva
- Dropped sub-package: root-rootaas (replaced by python{2,3}-jupyroot)
31 lines
1.5 KiB
Diff
31 lines
1.5 KiB
Diff
diff --git a/math/mathmore/test/testSpecFunc.cxx b/math/mathmore/test/testSpecFunc.cxx
|
|
index d768160..8c223ee 100644
|
|
--- a/math/mathmore/test/testSpecFunc.cxx
|
|
+++ b/math/mathmore/test/testSpecFunc.cxx
|
|
@@ -186,7 +186,7 @@ int testSpecFunc() {
|
|
|
|
iret |= compare("hyperg(8, -8, 1, 0.5) ", hyperg(8, -8, 1, 0.5), 0.13671875);
|
|
|
|
- iret |= compare("laguerre(4, 1.) ", laguerre(4, 1.), -0.6250); // need to find more precise value
|
|
+ iret |= compare("laguerre(4, 1.) ", laguerre(4, 1.), -0.6250, 4); // need to find more precise value
|
|
|
|
iret |= compare("legendre(10, -0.5) ", legendre(10, -0.5), -0.1882286071777345);
|
|
|
|
diff --git a/test/stressMathCore.cxx b/test/stressMathCore.cxx
|
|
index 1006dd1..5dc96ee 100644
|
|
--- a/test/stressMathCore.cxx
|
|
+++ b/test/stressMathCore.cxx
|
|
@@ -1117,11 +1117,11 @@ int testVector(int ngen, bool testio=false) {
|
|
|
|
s1 = a.testOperations(v1); a.print(VecType<V1>::name()+" operations");
|
|
scale = Dim*20;
|
|
- if (Dim==3 && VecType<V2>::name() == "RhoEtaPhiVector") scale *= 10; // for problem with RhoEtaPhi
|
|
+ if (Dim==3 && VecType<V2>::name() == "RhoEtaPhiVector") scale *= 12; // for problem with RhoEtaPhi
|
|
if (Dim==4 && VecType<V2>::name() == "PtEtaPhiMVector") scale *= 10;
|
|
#if defined (R__LINUX) && !defined(R__B64)
|
|
// problem of precision on linux 32
|
|
- if (Dim ==4) scale = 1000000000;
|
|
+ if (Dim ==4) scale = 5000000000;
|
|
#endif
|
|
// for problem with PtEtaPhiE
|
|
if (Dim==4 && VecType<V2>::name() == "PtEtaPhiEVector") scale = 0.01/(std::numeric_limits<double>::epsilon());
|