Browse Source

only access to CKTkluMODE if KLU configured

pre-master-46
dwarning 2 years ago
parent
commit
7722c3dc6b
  1. 4
      src/frontend/com_option.c

4
src/frontend/com_option.c

@ -51,10 +51,14 @@ com_option(wordlist *wl)
printf("epsmin = %g\n", circuit->CKTepsmin);
printf("\nMatrix solver:\n");
#ifdef KLU
if (circuit->CKTkluMODE == 0)
printf("Sparse 1.3\n");
else
printf("KLU\n");
#else
printf("Sparse 1.3\n");
#endif
printf("\nTolerances (absolute):\n");
printf("abstol (current) = %g\n", circuit->CKTabstol);

Loading…
Cancel
Save