repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_id_to_id.c: add missing include
[isl.git]
/
bset_from_bmap.c
blob
958508031d9c45779fe6c1c09dac0e1ae60be29a
1
#include <isl/map_type.h>
2
3
/* Return the basic set that was treated as the basic map "bmap".
4
*/
5
static
__isl_give isl_basic_set
*
bset_from_bmap
(
__isl_take isl_basic_map
*
bmap
)
6
{
7
return
(
isl_basic_set
*)
bmap
;
8
}