scheduler: also (optionally) bound coefficients computed by carry_dependences
[isl.git] / isl_piplib.h
blobef9b2d1c299f89097be892481d0a01388a1b7237
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #ifndef ISL_PIPLIB_H
11 #define ISL_PIPLIB_H
13 #include <isl/ctx.h>
14 #include <isl_int.h>
15 #include <isl/map.h>
16 #ifndef ISL_PIPLIB
17 #error "no piplib"
18 #endif
20 #include <piplib/piplibMP.h>
22 void isl_seq_cpy_to_pip(Entier *dst, isl_int *src, unsigned len);
23 void isl_seq_cpy_from_pip(isl_int *dst, Entier *src, unsigned len);
25 PipMatrix *isl_basic_map_to_pip(struct isl_basic_map *bmap, unsigned pip_param,
26 unsigned extra_front, unsigned extra_back);
28 #endif