/********** Copyright 1990 Regents of the University of California. All rights reserved. Author: 1985 Thomas L. Quarles **********/ #ifndef _SPERROR_H #define _SPERROR_H #include "iferrmsg.h" /* * definitions for error codes returned by SPICE3 routines. */ #define E_INTERN E_PANIC #define E_BADMATRIX (E_PRIVATE+1)/* ill-formed matrix can't be decomposed */ #define E_SINGULAR (E_PRIVATE+2) /* matrix is singular */ #define E_ITERLIM (E_PRIVATE+3) /* iteration limit reached,operation aborted */ #define E_ORDER (E_PRIVATE+4) /* integration order not supported */ #define E_METHOD (E_PRIVATE+5) /* integration method not supported */ #define E_TIMESTEP (E_PRIVATE+6) /* timestep too small */ #define E_XMISSIONLINE (E_PRIVATE+7) /* transmission line in pz analysis */ #define E_MAGEXCEEDED (E_PRIVATE+8) /* pole-zero magnitude too large */ #define E_SHORT (E_PRIVATE+9) /* pole-zero input or output shorted */ #define E_INISOUT (E_PRIVATE+10) /* pole-zero input is output */ #define E_ASKCURRENT (E_PRIVATE+11) /* ac currents cannot be ASKed */ #define E_ASKPOWER (E_PRIVATE+12) /* ac powers cannot be ASKed */ #define E_NODUNDEF (E_PRIVATE+13) /* node not defined in noise anal */ #define E_NOACINPUT (E_PRIVATE+14) /* no ac input src specified for noise */ #define E_NOF2SRC (E_PRIVATE+15) /* no source at F2 for IM disto analysis */ #define E_NODISTO (E_PRIVATE+16) /* no distortion analysis - NODISTO defined */ #define E_NONOISE (E_PRIVATE+17) /* no noise analysis - NONOISE defined */ #ifdef PARALLEL_ARCH #define E_MULTIERR (E_PRIVATE+18) /* multiple errors from diff. processes */ #endif /* PARALLEL_ARCH */ const char *SPerror(int type); #endif