dim_entry.h 172 B

1234567891011
  1. #ifndef DIMENTRY_H
  2. #define DIMENTRY_H
  3. typedef struct _DimEntry {
  4. unsigned int n_dims;
  5. unsigned int **sizes;
  6. double *times;
  7. double *errors;
  8. } DimEntry;
  9. #endif