isl_ast_graft_list_sort_guard: use isl_ast_graft_list_sort
[isl.git] / isl_piplib.h
blobb28fbcfd3cee7e8c5f7c50a4a66d04b4df1113db
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