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

#include <isl_ctx.h>
#include <isl_int.h>
#include <isl_map.h>
#ifndef ISL_PIPLIB
#error "no piplib"
#endif

#include <piplib/piplibMP.h>

void isl_seq_cpy_to_pip(Entier *dst, isl_int *src, unsigned len);
void isl_seq_cpy_from_pip(isl_int *dst, Entier *src, unsigned len);

PipMatrix *isl_basic_map_to_pip(struct isl_basic_map *bmap, unsigned pip_param,
			 unsigned extra_front, unsigned extra_back);

#endif