summaryrefslogtreecommitdiff
path: root/isl_lp_piplib.h
blob: 2284e0dc935f4a2a4e9edf7241ad6c24718fd831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef ISL_LP_PIPLIB_H
#define ISL_LP_PIPLIB_H

#include <isl_lp.h>

#if defined(__cplusplus)
extern "C" {
#endif

enum isl_lp_result isl_pip_solve_lp(struct isl_basic_map *bmap, int maximize,
				      isl_int *f, isl_int denom, isl_int *opt,
				      isl_int *opt_denom,
				      struct isl_vec **sol);

#if defined(__cplusplus)
}
#endif

#endif