You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
391 B
21 lines
391 B
#ifndef ngspice_COMPATMODE_H
|
|
#define ngspice_COMPATMODE_H
|
|
|
|
#include "ngspice/config.h"
|
|
|
|
typedef enum {
|
|
COMPATMODE_NATIVE = 0,
|
|
COMPATMODE_HS = 1,
|
|
COMPATMODE_SPICE3 = 2,
|
|
COMPATMODE_ALL = 3,
|
|
COMPATMODE_PS = 4,
|
|
COMPATMODE_PSA = 5,
|
|
COMPATMODE_LT = 6,
|
|
COMPATMODE_LTA = 7,
|
|
COMPATMODE_LTPS = 8,
|
|
COMPATMODE_LTPSA = 9
|
|
} COMPATMODE_T ;
|
|
|
|
extern COMPATMODE_T inp_compat_mode;
|
|
|
|
#endif
|