privately export isl_basic_map_fast_cmp and isl_basic_map_fast_is_equal
[platform/upstream/isl.git] / include / isl_ilp.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_ILP_H
11 #define ISL_ILP_H
12
13 #include <isl_lp.h>
14
15 #if defined(__cplusplus)
16 extern "C" {
17 #endif
18
19 enum isl_lp_result isl_basic_set_solve_ilp(struct isl_basic_set *bset, int max,
20                                       isl_int *f, isl_int *opt,
21                                       struct isl_vec **sol_p);
22
23 #if defined(__cplusplus)
24 }
25 #endif
26
27 #endif