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

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

#ifndef OTI_COMPLEX_STRUCTURES_H
#define OTI_COMPLEX_STRUCTURES_H

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

typedef struct {
    ccoeff_t*     p_data;
    uint64_t       nrows;
    uint64_t       ncols;
    uint64_t        size;
} carr_t;

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


#endif