Changed the Error message in klusmp.c to Information

This commit is contained in:
Francesco Lannutti 2020-08-09 08:42:10 +02:00 committed by Holger Vogt
parent 88074a23c9
commit 3b1f5e6122
1 changed files with 1 additions and 1 deletions

View File

@ -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++) {