Changed the Error message in klusmp.c to Information
This commit is contained in:
parent
88074a23c9
commit
3b1f5e6122
|
|
@ -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…
Reference in New Issue