isl_tab_track_bmap: drop sanity checks in case of empty tab
[isl.git] / include / isl / ilp.h
blobde5ec807540a2d791353c3fd8e1608eb47946a15
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #ifndef ISL_ILP_H
11 #define ISL_ILP_H
13 #include <isl/aff_type.h>
14 #include <isl/lp.h>
16 #if defined(__cplusplus)
17 extern "C" {
18 #endif
20 enum isl_lp_result isl_basic_set_solve_ilp(struct isl_basic_set *bset, int max,
21 isl_int *f, isl_int *opt,
22 struct isl_vec **sol_p);
23 enum isl_lp_result isl_basic_set_max(__isl_keep isl_basic_set *bset,
24 __isl_keep isl_aff *obj, isl_int *opt);
25 enum isl_lp_result isl_set_min(__isl_keep isl_set *set,
26 __isl_keep isl_aff *obj, isl_int *opt);
27 enum isl_lp_result isl_set_max(__isl_keep isl_set *set,
28 __isl_keep isl_aff *obj, isl_int *opt);
30 #if defined(__cplusplus)
32 #endif
34 #endif