00971125d191d822dd60da6d169cf043d57bf887
[platform/upstream/isl.git] / isl_scan.h
1 /*
2  * Copyright 2008-2009 Katholieke Universiteit Leuven
3  *
4  * Use of this software is governed by the GNU LGPLv2.1 license
5  *
6  * Written by Sven Verdoolaege, K.U.Leuven, Departement
7  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8  */
9
10 #ifndef ISL_SCAN_H
11 #define ISL_SCAN_H
12
13 #include "isl_set.h"
14 #include "isl_vec.h"
15
16 struct isl_scan_callback {
17         int (*add)(struct isl_scan_callback *cb, __isl_take isl_vec *sample);
18 };
19
20 int isl_basic_set_scan(struct isl_basic_set *bset,
21         struct isl_scan_callback *callback);
22
23 #endif