From 3b1f5e6122863d1652eabddf709ba7edbc7e36ae Mon Sep 17 00:00:00 2001 From: Francesco Lannutti Date: Sun, 9 Aug 2020 08:42:10 +0200 Subject: [PATCH] Changed the Error message in klusmp.c to Information --- src/maths/KLU/klusmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maths/KLU/klusmp.c b/src/maths/KLU/klusmp.c index 3b0ed9cc2..a74223f6c 100644 --- a/src/maths/KLU/klusmp.c +++ b/src/maths/KLU/klusmp.c @@ -1618,7 +1618,7 @@ SMPfindElt (SMPmatrix *eMatrix, int Row, int Col, int CreateIfMissing) Row = Row - 1 ; Col = Col - 1 ; if ((Row < 0) || (Col < 0)) { - printf ("Error: Cannot find an element with row '%d' and column '%d' in the KLU matrix\n", Row, Col) ; + printf ("Information: Cannot find an element with row '%d' and column '%d' in the KLU matrix\n", Row, Col) ; return NULL ; } for (i = eMatrix->SMPkluMatrix->KLUmatrixAp [Col] ; i < eMatrix->SMPkluMatrix->KLUmatrixAp [Col + 1] ; i++) {