From 9cd38b6ad10b0b43497d26b8fb3e55f3693bed36 Mon Sep 17 00:00:00 2001 From: Pierre Blanchard Date: Tue, 8 Dec 2015 17:03:36 +0100 Subject: [PATCH] HMat: fix ChebSymKernel... --- Src/Kernels/Chebyshev/FChebSymM2LHandler.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Src/Kernels/Chebyshev/FChebSymM2LHandler.hpp b/Src/Kernels/Chebyshev/FChebSymM2LHandler.hpp index 3b1463ab..8360afb3 100644 --- a/Src/Kernels/Chebyshev/FChebSymM2LHandler.hpp +++ b/Src/Kernels/Chebyshev/FChebSymM2LHandler.hpp @@ -21,12 +21,14 @@ #include "Utils/FBlas.hpp" -#include "Utils/FAca.hpp" #include "FChebTensor.hpp" #include "../Interpolation/FInterpSymmetries.hpp" #include "FChebM2LHandler.hpp" +#include "Utils/FAca.hpp" + + /** * @author Matthias Messner (matthias.matthias@inria.fr) * Please read the license @@ -125,9 +127,9 @@ static void precompute(const MatrixKernelClass *const MatrixKernel, const FReal unsigned int rank; #ifdef FULLY_PIVOTED_ACASVD - FAca::pACA(U, nnodes, nnodes, Epsilon, UU, VV, rank); + FAca::fACA(U, nnodes, nnodes, Epsilon, UU, VV, rank); #else - FAca::fACA(Computer, nnodes, nnodes, Epsilon, UU, VV, rank); + FAca::pACA(Computer, nnodes, nnodes, Epsilon, UU, VV, rank); #endif // QR decomposition -- GitLab