cubedata.h 160 Bytes
Newer Older
1
#define CUBE_MAX_DIM (100)
2 3 4 5
typedef struct NDBOX
{
	unsigned int size;			/* required to be a Postgres varlena type */
	unsigned int dim;
6
	double		x[1];
7
}	NDBOX;