Fixed the KLU returns values for Factorization and ReFactorization.
If the matrix is Numerically Singular, continue the factorization till the end
This commit is contained in:
parent
8a8adfe451
commit
77fa5c06a9
|
|
@ -407,11 +407,25 @@ SMPcLUfac (SMPmatrix *Matrix, double PivTol)
|
||||||
ret = klu_z_refactor (Matrix->CKTkluAp, Matrix->CKTkluAi, Matrix->CKTkluAx_Complex,
|
ret = klu_z_refactor (Matrix->CKTkluAp, Matrix->CKTkluAi, Matrix->CKTkluAx_Complex,
|
||||||
Matrix->CKTkluSymbolic, Matrix->CKTkluNumeric, Matrix->CKTkluCommon) ;
|
Matrix->CKTkluSymbolic, Matrix->CKTkluNumeric, Matrix->CKTkluCommon) ;
|
||||||
|
|
||||||
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
if (ret == 0)
|
||||||
{
|
{
|
||||||
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "Error: KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluNumeric == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
return 1 ;
|
||||||
|
} else {
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning: KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
}
|
}
|
||||||
return (!ret) ;
|
|
||||||
} else {
|
} else {
|
||||||
spSetComplex (Matrix->SPmatrix) ;
|
spSetComplex (Matrix->SPmatrix) ;
|
||||||
return spFactor (Matrix->SPmatrix) ;
|
return spFactor (Matrix->SPmatrix) ;
|
||||||
|
|
@ -437,20 +451,25 @@ SMPluFac (SMPmatrix *Matrix, double PivTol, double Gmin)
|
||||||
ret = klu_refactor (Matrix->CKTkluAp, Matrix->CKTkluAi, Matrix->CKTkluAx,
|
ret = klu_refactor (Matrix->CKTkluAp, Matrix->CKTkluAi, Matrix->CKTkluAx,
|
||||||
Matrix->CKTkluSymbolic, Matrix->CKTkluNumeric, Matrix->CKTkluCommon) ;
|
Matrix->CKTkluSymbolic, Matrix->CKTkluNumeric, Matrix->CKTkluCommon) ;
|
||||||
|
|
||||||
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
if (ret == 0)
|
||||||
{
|
{
|
||||||
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "Error: KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluNumeric == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
return 1 ;
|
||||||
|
} else {
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning: KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
}
|
}
|
||||||
return (!ret) ;
|
|
||||||
|
|
||||||
// if (ret == 1)
|
|
||||||
// return 0 ;
|
|
||||||
// else if (ret == 0)
|
|
||||||
// return (E_SINGULAR) ;
|
|
||||||
// else {
|
|
||||||
// fprintf (stderr, "KLU Error in re-factor!") ;
|
|
||||||
// return 1 ;
|
|
||||||
// }
|
|
||||||
} else {
|
} else {
|
||||||
spSetReal (Matrix->SPmatrix) ;
|
spSetReal (Matrix->SPmatrix) ;
|
||||||
LoadGmin (Matrix, Gmin) ;
|
LoadGmin (Matrix, Gmin) ;
|
||||||
|
|
@ -487,11 +506,26 @@ SMPluFacKLUforCIDER (SMPmatrix *Matrix)
|
||||||
/* Free the Real Matrix Storage */
|
/* Free the Real Matrix Storage */
|
||||||
free (KLUmatrixAx) ;
|
free (KLUmatrixAx) ;
|
||||||
}
|
}
|
||||||
if (Matrix->SMPkluMatrix->KLUmatrixCommon->status == KLU_EMPTY_MATRIX) {
|
|
||||||
printf ("CIDER: KLU Empty Matrix\n") ;
|
if (ret == 0)
|
||||||
|
{
|
||||||
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
|
fprintf (stderr, "Error (CIDER): KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
||||||
|
{
|
||||||
|
fprintf (stderr, "Error (CIDER): KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluNumeric == NULL) {
|
||||||
|
fprintf (stderr, "Error (CIDER): KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
return 1 ;
|
||||||
|
} else {
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning (CIDER): KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
}
|
}
|
||||||
return (!ret) ;
|
|
||||||
} else {
|
} else {
|
||||||
return spFactor (Matrix->SPmatrix) ;
|
return spFactor (Matrix->SPmatrix) ;
|
||||||
}
|
}
|
||||||
|
|
@ -509,7 +543,7 @@ SMPcReorder (SMPmatrix *Matrix, double PivTol, double PivRel, int *NumSwaps)
|
||||||
{
|
{
|
||||||
*NumSwaps = 1 ;
|
*NumSwaps = 1 ;
|
||||||
spSetComplex (Matrix->SPmatrix) ;
|
spSetComplex (Matrix->SPmatrix) ;
|
||||||
// Matrix->CKTkluCommon->tol = PivTol ;
|
Matrix->CKTkluCommon->tol = PivTol ;
|
||||||
|
|
||||||
if (Matrix->CKTkluNumeric != NULL)
|
if (Matrix->CKTkluNumeric != NULL)
|
||||||
{
|
{
|
||||||
|
|
@ -520,14 +554,23 @@ SMPcReorder (SMPmatrix *Matrix, double PivTol, double PivRel, int *NumSwaps)
|
||||||
|
|
||||||
if (Matrix->CKTkluNumeric == NULL)
|
if (Matrix->CKTkluNumeric == NULL)
|
||||||
{
|
{
|
||||||
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
fprintf (stderr, "Error: KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
{
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
return 0 ;
|
fprintf (stderr, "Error: KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX) {
|
||||||
|
fprintf (stderr, "Error: KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluSymbolic == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUsymbolic object is NULL. A problem occurred\n") ;
|
||||||
}
|
}
|
||||||
return 1 ;
|
return 1 ;
|
||||||
}
|
} else {
|
||||||
else
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning: KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
*NumSwaps = 1 ;
|
*NumSwaps = 1 ;
|
||||||
spSetComplex (Matrix->SPmatrix) ;
|
spSetComplex (Matrix->SPmatrix) ;
|
||||||
|
|
@ -546,7 +589,7 @@ SMPreorder (SMPmatrix *Matrix, double PivTol, double PivRel, double Gmin)
|
||||||
{
|
{
|
||||||
spSetReal (Matrix->SPmatrix) ;
|
spSetReal (Matrix->SPmatrix) ;
|
||||||
LoadGmin_CSC (Matrix->CKTdiag_CSC, Matrix->CKTkluN, Gmin) ;
|
LoadGmin_CSC (Matrix->CKTdiag_CSC, Matrix->CKTkluN, Gmin) ;
|
||||||
// Matrix->CKTkluCommon->tol = PivTol ;
|
Matrix->CKTkluCommon->tol = PivTol ;
|
||||||
|
|
||||||
if (Matrix->CKTkluNumeric != NULL)
|
if (Matrix->CKTkluNumeric != NULL)
|
||||||
{
|
{
|
||||||
|
|
@ -557,14 +600,23 @@ SMPreorder (SMPmatrix *Matrix, double PivTol, double PivRel, double Gmin)
|
||||||
|
|
||||||
if (Matrix->CKTkluNumeric == NULL)
|
if (Matrix->CKTkluNumeric == NULL)
|
||||||
{
|
{
|
||||||
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX)
|
fprintf (stderr, "Error: KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
{
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
return 0 ;
|
fprintf (stderr, "Error: KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX) {
|
||||||
|
fprintf (stderr, "Error: KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluSymbolic == NULL) {
|
||||||
|
fprintf (stderr, "Error: KLUsymbolic object is NULL. A problem occurred\n") ;
|
||||||
}
|
}
|
||||||
return 1 ;
|
return 1 ;
|
||||||
}
|
} else {
|
||||||
else
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning: KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
spSetReal (Matrix->SPmatrix) ;
|
spSetReal (Matrix->SPmatrix) ;
|
||||||
LoadGmin (Matrix, Gmin) ;
|
LoadGmin (Matrix, Gmin) ;
|
||||||
|
|
@ -581,8 +633,6 @@ SMPreorderKLUforCIDER (SMPmatrix *Matrix)
|
||||||
|
|
||||||
if (Matrix->CKTkluMODE)
|
if (Matrix->CKTkluMODE)
|
||||||
{
|
{
|
||||||
// Matrix->CKTkluCommon->tol = PivTol ;
|
|
||||||
|
|
||||||
if (Matrix->SMPkluMatrix->KLUmatrixNumeric != NULL) {
|
if (Matrix->SMPkluMatrix->KLUmatrixNumeric != NULL) {
|
||||||
klu_free_numeric (&(Matrix->SMPkluMatrix->KLUmatrixNumeric), Matrix->SMPkluMatrix->KLUmatrixCommon) ;
|
klu_free_numeric (&(Matrix->SMPkluMatrix->KLUmatrixNumeric), Matrix->SMPkluMatrix->KLUmatrixCommon) ;
|
||||||
}
|
}
|
||||||
|
|
@ -609,15 +659,23 @@ SMPreorderKLUforCIDER (SMPmatrix *Matrix)
|
||||||
}
|
}
|
||||||
if (Matrix->SMPkluMatrix->KLUmatrixNumeric == NULL)
|
if (Matrix->SMPkluMatrix->KLUmatrixNumeric == NULL)
|
||||||
{
|
{
|
||||||
printf ("CIDER: KLU Factorization Error\n") ;
|
fprintf (stderr, "Error (CIDER): KLUnumeric object is NULL. A problem occurred\n") ;
|
||||||
if (Matrix->SMPkluMatrix->KLUmatrixCommon->status == KLU_EMPTY_MATRIX)
|
if (Matrix->CKTkluCommon == NULL) {
|
||||||
{
|
fprintf (stderr, "Error (CIDER): KLUcommon object is NULL. A problem occurred\n") ;
|
||||||
return 0 ;
|
}
|
||||||
|
if (Matrix->CKTkluCommon->status == KLU_EMPTY_MATRIX) {
|
||||||
|
fprintf (stderr, "Error (CIDER): KLU Matrix is empty\n") ;
|
||||||
|
}
|
||||||
|
if (Matrix->CKTkluSymbolic == NULL) {
|
||||||
|
fprintf (stderr, "Error (CIDER): KLUsymbolic object is NULL. A problem occurred\n") ;
|
||||||
}
|
}
|
||||||
return 1 ;
|
return 1 ;
|
||||||
}
|
} else {
|
||||||
else
|
if (Matrix->CKTkluCommon->status == KLU_SINGULAR) {
|
||||||
|
fprintf (stderr, "Warning (CIDER): KLU Matrix is SINGULAR\n") ;
|
||||||
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return spFactor (Matrix->SPmatrix) ;
|
return spFactor (Matrix->SPmatrix) ;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,7 @@ NIinit(CKTcircuit *ckt)
|
||||||
ckt->CKTmatrix->CKTkluMODE = ckt->CKTkluMODE ; /* TO BE SUBSTITUTED WITH THE HEURISTICS */
|
ckt->CKTmatrix->CKTkluMODE = ckt->CKTkluMODE ; /* TO BE SUBSTITUTED WITH THE HEURISTICS */
|
||||||
|
|
||||||
klu_defaults (ckt->CKTmatrix->CKTkluCommon) ;
|
klu_defaults (ckt->CKTmatrix->CKTkluCommon) ;
|
||||||
|
ckt->CKTmatrix->CKTkluCommon->halt_if_singular = 0 ;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ckt->CKTniState = NIUNINITIALIZED;
|
ckt->CKTniState = NIUNINITIALIZED;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue