18 lines · c
1/*2 * Copyright 2014 Ecole Normale Superieure3 *4 * Use of this software is governed by the MIT license5 *6 * Written by Sven Verdoolaege,7 * Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France8 */9 10#include <isl_multi_macro.h>11 12/* Given f, return floor(f).13 */14__isl_give MULTI(BASE) *FN(MULTI(BASE),floor)(__isl_take MULTI(BASE) *multi)15{16 return FN(MULTI(BASE),un_op)(multi, &FN(EL,floor));17}18