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.
25 lines
702 B
25 lines
702 B
/**********
|
|
Author: 2010 Paolo Nenzi
|
|
**********/
|
|
|
|
#ifndef ngspice_FTEOPTDEFS_H
|
|
#define ngspice_FTEOPTDEFS_H
|
|
|
|
/* Structure used to describe the frontend statistics to be collected */
|
|
/* This is similar to the STATististics in optdefs.h but collects */
|
|
/* statistics pertaining to ngspice frontend */
|
|
|
|
typedef struct sFTESTATistics {
|
|
|
|
int FTESTATdeckNumLines; /* number of lines in spice deck */
|
|
|
|
double FTESTATnetLoadTime; /* total time required to load the spice deck */
|
|
double FTESTATnetParseTime; /* total time required to parse the netlist */
|
|
} FTESTATistics;
|
|
|
|
|
|
#define FTEOPT_NLDECK 1
|
|
#define FTEOPT_NLT 2
|
|
#define FTEOPT_NPT 3
|
|
|
|
#endif
|