8 int main(int argc
, char * argv
[])
11 isl_ctx
*ctx
= isl_ctx_alloc();
12 pdg
= PDG::Load(stdin
, ctx
);
14 for (int i
= 0; i
< pdg
->nodes
.size(); ++i
) {
15 pdg::node
*node
= pdg
->nodes
[i
];
16 isl_map
*map
= node
->schedule
->get_isl_map(ctx
);
17 printf("node %d: ", node
->nr
);
18 isl_map_print(map
, stdout
, 0, ISL_FORMAT_ISL
);