Vector data type for simulation output. More...
#include <ne_dyn_vec.h>
Data Fields | |
int | curSize |
Current size of the vector. | |
int | totSize |
Total allocated size (>= current size). | |
int | dataSize |
Size of each data element in the vector. | |
double ** | data |
Store for the data. |
Vector data type for simulation output.
A vector-like data type used to hold output of simulations. This is different from standard vector types as it uses a pointer at each element which allows each element to be allocated/freed in isolation.
Definition at line 38 of file ne_dyn_vec.h.
int curSize |
Current size of the vector.
Definition at line 39 of file ne_dyn_vec.h.
double** data |
Store for the data.
Definition at line 42 of file ne_dyn_vec.h.
int dataSize |
Size of each data element in the vector.
Definition at line 41 of file ne_dyn_vec.h.
int totSize |
Total allocated size (>= current size).
Definition at line 40 of file ne_dyn_vec.h.