Browse Source

Changed the Error message in klusmp.c to Information

pre-master-46
Francesco Lannutti 6 years ago
committed by Holger Vogt
parent
commit
3b1f5e6122
  1. 2
      src/maths/KLU/klusmp.c

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

Loading…
Cancel
Save