From 89f0a2b1f3f1074c1dc6f366713a5360e7bb8afc Mon Sep 17 00:00:00 2001 From: Armin Geiser Date: Thu, 15 Apr 2021 08:52:50 +0200 Subject: [PATCH] Update applications/LinearSolversApplication/linear_solvers_define.h --- .../LinearSolversApplication/linear_solvers_define.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/LinearSolversApplication/linear_solvers_define.h b/applications/LinearSolversApplication/linear_solvers_define.h index 8ee06d7f403c..6f5922ba694b 100644 --- a/applications/LinearSolversApplication/linear_solvers_define.h +++ b/applications/LinearSolversApplication/linear_solvers_define.h @@ -21,11 +21,11 @@ namespace Kratos // IMPORTANT: // -// The matrices in Kratos use colum-major storage ordering. -// Eigen matrices, however, use row-major storage ordering by default. +// The matrices in Kratos use row-major storage ordering. +// Eigen matrices, however, use column-major storage ordering by default. // // If these two worlds are combined, it is crucial that Eigen matrices are used -// with **column-major** storage order to match the Kratos matrices! +// with **row-major** storage order to match the Kratos matrices! // // To simplify things, the most commonly used types are defined below: