a766fe47501b — Chris Cannam v1.0.0 6 years ago
Adjust this to match the other single-precision threshold above it; also because a recent Accelerate framework update has placed the vDSP values slightly outside that threshold for some reason we can do nothing about
1 files changed, 1 insertions(+), 1 deletions(-)

M test/TestFFT.cpp
M test/TestFFT.cpp +1 -1
@@ 54,7 54,7 @@ static const double eps = 1e-7;
 static const float epsf = 1e-6f;
 #else
 static const double eps = 1e-14;
-static const float epsf = 1e-7f;
+static const float epsf = 1e-6f;
 #endif
 
 #define COMPARE(a, b) BOOST_CHECK_SMALL(a-b, eps)