2 * Copyright 2014 Ecole Normale Superieure
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege,
7 * Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
10 #include <isl_multi_macro.h>
12 /* Given f, return floor(f).
14 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),floor
)(__isl_take
MULTI(BASE
) *multi
)
18 multi
= FN(MULTI(BASE
),cow
)(multi
);
22 for (i
= 0; i
< multi
->n
; ++i
) {
23 multi
->u
.p
[i
] = FN(EL
,floor
)(multi
->u
.p
[i
]);
25 return FN(MULTI(BASE
),free
)(multi
);