X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=isl_map_lexopt_templ.c;h=1196a87f7eaf13cea8585e3731d0231abe45f409;hb=63fb8a7f484648c3caa25351c8c94ac2395ec563;hp=275c14faaacc0cdc17cf1d394fc7e283d9d21965;hpb=79e5f558e5f9bb9a559da4eef8d181dcf053f60d;p=platform%2Fupstream%2Fisl.git diff --git a/isl_map_lexopt_templ.c b/isl_map_lexopt_templ.c index 275c14f..1196a87 100644 --- a/isl_map_lexopt_templ.c +++ b/isl_map_lexopt_templ.c @@ -2,7 +2,7 @@ * Copyright 2010 INRIA Saclay * Copyright 2012 Ecole Normale Superieure * - * Use of this software is governed by the GNU LGPLv2.1 license + * Use of this software is governed by the MIT license * * Written by Sven Verdoolaege, * INRIA Saclay - Ile-de-France, Parc Club Orsay Universite, @@ -130,3 +130,13 @@ __isl_give TYPE *SF(isl_map_lexmax,SUFFIX)(__isl_take isl_map *map) { return SF(isl_map_lexopt,SUFFIX)(map, 1); } + +__isl_give TYPE *SF(isl_set_lexmin,SUFFIX)(__isl_take isl_set *set) +{ + return SF(isl_map_lexmin,SUFFIX)(set); +} + +__isl_give TYPE *SF(isl_set_lexmax,SUFFIX)(__isl_take isl_set *set) +{ + return SF(isl_map_lexmax,SUFFIX)(set); +}