Added an hint about which solver has been compiled,

based on #ifdef
This commit is contained in:
Francesco Lannutti 2012-05-04 23:13:44 +02:00 committed by Francesco Lannutti
parent 6225e05b8c
commit 9975d6f08a
2 changed files with 16 additions and 0 deletions

View File

@ -5423,6 +5423,11 @@
Removed the PARALLEL_ARCH macro
Removed the Combine algorithm from Sparse and Analyses
2012-05-04 Francesco Lannutti
* src/frontend/misccoms.c
Added an hint about which solver has been compiled,
based on #ifdef
2012-04-11 Francesco Lannutti
* src/spicelib/analysis/cktacct.c
Corrected a bug that caused segmentation fault

View File

@ -199,6 +199,17 @@ com_version(wordlist *wl)
fprintf(cp_out,
"******\n"
"** %s-%s : %s\n"
#if defined KLU
"** Compiled with KLU Direct Linear Solver\n"
#elif defined SuperLU
"** Compiled with SuperLU Direct Linear Solver\n"
#elif defined UMFPACK
"** Compiled with UMFPACK Direct Linear Solver\n"
#else
"** Compiled with Sparse Direct Linear Solver\n"
#endif
"** The U. C. Berkeley CAD Group\n"
"** Copyright 1985-1994, Regents of the University of California.\n"
"** %s\n",