Browse Source

[PATCH #69] Changed vector type from to the enum assigned to it.

pre-master-46
Jim Monte 7 years ago
committed by Holger Vogt
parent
commit
e208aab4cd
  1. 3
      src/include/ngspice/dvec.h

3
src/include/ngspice/dvec.h

@ -3,6 +3,7 @@
#include "ngspice/complex.h" #include "ngspice/complex.h"
#include "ngspice/grid.h" #include "ngspice/grid.h"
#include "ngspice/sim.h"
/* Dvec flags. */ /* Dvec flags. */
@ -36,7 +37,7 @@ typedef enum {
struct dvec { struct dvec {
char *v_name; /* Same as so_vname. */ char *v_name; /* Same as so_vname. */
int v_type; /* Same as so_vtype. */
enum simulation_types v_type; /* Same as so_vtype. */
short v_flags; /* Flags (a combination of VF_*). */ short v_flags; /* Flags (a combination of VF_*). */
double *v_realdata; /* Real data. */ double *v_realdata; /* Real data. */
ngcomplex_t *v_compdata; /* Complex data. */ ngcomplex_t *v_compdata; /* Complex data. */

Loading…
Cancel
Save