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
15 #include <isl/map_type.h>
16 #include <isl/set_type.h>
25 #if defined(__cplusplus)
29 enum isl_lp_result isl_basic_map_solve_lp(struct isl_basic_map *bmap, int max,
30 isl_int *f, isl_int denom, isl_int *opt,
32 struct isl_vec **sol);
33 enum isl_lp_result isl_basic_set_solve_lp(struct isl_basic_set *bset, int max,
34 isl_int *f, isl_int denom, isl_int *opt,
36 struct isl_vec **sol);
37 enum isl_lp_result isl_map_solve_lp(__isl_keep isl_map *map, int max,
38 isl_int *f, isl_int denom, isl_int *opt,
40 struct isl_vec **sol);
41 enum isl_lp_result isl_set_solve_lp(__isl_keep isl_set *set, int max,
42 isl_int *f, isl_int denom, isl_int *opt,
44 struct isl_vec **sol);
46 #if defined(__cplusplus)