Remove redundant printouts

This commit is contained in:
Holger Vogt 2023-08-18 15:08:01 +02:00
parent 750d92c493
commit 8b3bb6613e
1 changed files with 1 additions and 5 deletions

View File

@ -91,8 +91,6 @@ CKTpzSetup(CKTcircuit *ckt, int type)
#ifdef KLU
if (matrix->CKTkluMODE)
{
fprintf (stderr, "Using KLU as Direct Linear Solver\n") ;
/* Convert the COO Storage to CSC for KLU and Fill the Binding Table */
SMPconvertCOOtoCSC (matrix) ;
@ -145,14 +143,12 @@ CKTpzSetup(CKTcircuit *ckt, int type)
}
job->PZdrive_nptr = matched->CSC_Complex ;
}
} else {
fprintf (stderr, "Using SPARSE 1.3 as Direct Linear Solver\n") ;
}
#endif
error = NIreinit(ckt);
if (error)
return(error);
return(error);
return OK;
}