Browse Source

Added: Error: Pole/zero analysis is not (yet) supported with 'option KLU'.

Use 'option sparse' instead.
pre-master-46
Brian Taylor 1 year ago
committed by Holger Vogt
parent
commit
e130371410
  1. 8
      src/spicelib/analysis/pzan.c

8
src/spicelib/analysis/pzan.c

@ -26,6 +26,14 @@ PZan(CKTcircuit *ckt, int reset)
NG_IGNORE(reset);
#ifdef KLU
if (ckt->CKTkluMODE) {
fprintf(stderr, "Error: Pole/zero analysis is not (yet) supported with 'option KLU'.\n");
fprintf(stderr, " Use 'option sparse' instead.\n");
return(E_UNSUPP);
}
#endif
error = PZinit(ckt);
if (error != OK) return error;

Loading…
Cancel
Save