From f9dadbf520bc09e024b365d4a44d25a5e0dce75d Mon Sep 17 00:00:00 2001
From: Olivier Coulaud <olivier.coulaud@inria.fr>
Date: Fri, 7 Feb 2025 13:34:12 +0100
Subject: [PATCH] documentation

---
 include/scalfmm/algorithms/full_direct.hpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/include/scalfmm/algorithms/full_direct.hpp b/include/scalfmm/algorithms/full_direct.hpp
index 22e8569b..842f6db9 100644
--- a/include/scalfmm/algorithms/full_direct.hpp
+++ b/include/scalfmm/algorithms/full_direct.hpp
@@ -240,10 +240,9 @@ namespace scalfmm::algorithms
         using matrix_type = typename matrix_kernel_type::template matrix_type<value_type>;
 
         static_assert(matrix_kernel_type::km == source_particle_type::inputs_size,
-                      "Different input size between Matrix kernel and container!");
+                      "Different input size between Matrix kernel and source container!");
         static_assert(matrix_kernel_type::kn == target_particle_type::outputs_size,
-                      "Different output size between Matrix kernel and container!");
-
+                      "Different output size between Matrix kernel and target container!");
         static constexpr std::size_t inputs_size = matrix_kernel_type::km;
         static constexpr std::size_t outputs_size = matrix_kernel_type::kn;
 
-- 
GitLab