From 5b8e2849c486516b0524020c9a7319ac05bb191a Mon Sep 17 00:00:00 2001 From: Coulaud <olivier.coulaud@inria.fr> Date: Tue, 15 Feb 2022 15:04:42 +0100 Subject: [PATCH] Add index and level in operator << --- include/Kernels/Uniform/FUnifCell.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/Kernels/Uniform/FUnifCell.hpp b/include/Kernels/Uniform/FUnifCell.hpp index ddc7a1cc1..b56c97f0e 100644 --- a/include/Kernels/Uniform/FUnifCell.hpp +++ b/include/Kernels/Uniform/FUnifCell.hpp @@ -187,6 +187,8 @@ public: } template <class StreamClass> friend StreamClass& operator<<(StreamClass& output, const FUnifCell<FReal,ORDER, NRHS, NLHS, NVALS>& cell){ + output << "Symbolic: level " << cell.getLevel() + << " Morton: " << cell.getMortonIndex() << std::endl; output << "Multipole exp NRHS " << NRHS << " NVALS " << NVALS << " VectorSize " << cell.getVectorSize() -- GitLab