summaryrefslogtreecommitdiff
path: root/cloog-0.17.0/isl/isl_point_private.h
blob: 305b81e381a5347f19909cd498f61664cef27c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <isl/space.h>
#include <isl/point.h>
#include <isl/vec.h>

struct isl_point {
	int		ref;
	isl_space	*dim;
	struct isl_vec	*vec;
};

__isl_give isl_point *isl_point_alloc(__isl_take isl_space *dim,
	__isl_take isl_vec *vec);