Send info to stdout, not stderr

This commit is contained in:
Holger Vogt 2023-08-18 15:08:40 +02:00
parent 8b3bb6613e
commit c75eeb758e
1 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ CKTsetup(CKTcircuit *ckt)
#ifdef KLU
if (ckt->CKTmatrix->CKTkluMODE)
{
fprintf (stderr, "Using KLU as Direct Linear Solver\n") ;
fprintf (stdout, "Using KLU as Direct Linear Solver\n") ;
/* Convert the COO Storage to CSC for KLU and Fill the Binding Table */
SMPconvertCOOtoCSC (matrix) ;
@ -181,7 +181,7 @@ CKTsetup(CKTcircuit *ckt)
#endif
} else {
fprintf (stderr, "Using SPARSE 1.3 as Direct Linear Solver\n") ;
fprintf (stdout, "Using SPARSE 1.3 as Direct Linear Solver\n") ;
}
#endif