Program Listing for File semisparse/array/structures.h#
↰ Return to documentation for file (oti/semisparse/array/structures.h)
#ifndef OTI_SEMISPARSE_ARRAY_STRUCTURES_H
#define OTI_SEMISPARSE_ARRAY_STRUCTURES_H
// ----------------------------------------------------------------------------------------------------
// -------------------------------------- STRUCTURES --------------------------------------
// ----------------------------------------------------------------------------------------------------
// Structure for array of sparse OTI numbers (2D)
typedef struct {
semiotin_t* p_data;
uint64_t nrows;
uint64_t ncols;
uint64_t size;
flag_t flag;
} arrsso_t;
// ----------------------------------------------------------------------------------------------------
// ------------------------------------- END STRUCTURES ---------------------------------------
// ----------------------------------------------------------------------------------------------------
#endif