Added: Error: Pole/zero analysis is not (yet) supported with 'option KLU'.
Use 'option sparse' instead.
This commit is contained in:
parent
5b3b48b913
commit
2232269217
|
|
@ -26,6 +26,14 @@ PZan(CKTcircuit *ckt, int reset)
|
||||||
|
|
||||||
NG_IGNORE(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);
|
error = PZinit(ckt);
|
||||||
if (error != OK) return error;
|
if (error != OK) return error;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue