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