isl 0.04
[isl.git] / include / isl_ilp.h
blob1ae331bfc5a605002ff4c3f8ced1ec20e31eeb7f
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_lp.h>
15 #if defined(__cplusplus)
16 extern "C" {
17 #endif
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);
23 #if defined(__cplusplus)
25 #endif
27 #endif