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.
27 lines
695 B
27 lines
695 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;
|
|
|
|
|
|
enum {
|
|
FTEOPT_NLDECK = 1,
|
|
FTEOPT_NLT,
|
|
FTEOPT_NPT,
|
|
};
|
|
|
|
#endif
|