Program Listing for File real/array/structures.h#

Return to documentation for file (oti/real/array/structures.h)

#ifndef OTI_REAL_STRUCTURES_H
#define OTI_REAL_STRUCTURES_H

// ----------------------------------------------------------------------------------------------------
// --------------------------------------      STRUCTURES        --------------------------------------
// ----------------------------------------------------------------------------------------------------

typedef struct {
    coeff_t*      p_data;
    uint64_t       nrows;
    uint64_t       ncols;
    uint64_t        size;
} darr_t;

// ----------------------------------------------------------------------------------------------------
// -------------------------------------    END STRUCTURES      ---------------------------------------
// ----------------------------------------------------------------------------------------------------


#endif