00001 #ifndef ISL_LP_H 00002 #define ISL_LP_H 00003 00004 #include <isl_map.h> 00005 00006 enum isl_lp_result { 00007 isl_lp_error = -1, 00008 isl_lp_ok = 0, 00009 isl_lp_unbounded, 00010 isl_lp_empty 00011 }; 00012 00013 #if defined(__cplusplus) 00014 extern "C" { 00015 #endif 00016 00017 enum isl_lp_result isl_solve_lp(struct isl_basic_map *bmap, int maximize, 00018 isl_int *f, isl_int denom, isl_int *opt, 00019 isl_int *opt_denom); 00020 00021 #if defined(__cplusplus) 00022 } 00023 #endif 00024 00025 #endif
1.5.7.1