4 int main(int argc
, char **argv
)
8 struct isl_options
*options
;
11 options
= isl_options_new_with_defaults();
13 argc
= isl_options_parse(options
, argc
, argv
, ISL_ARG_ALL
);
15 ctx
= isl_ctx_alloc_with_options(isl_options_arg
, options
);
17 map
= isl_map_read_from_file(ctx
, stdin
, -1);
18 map
= isl_map_transitive_closure(map
, &exact
);
20 printf("# NOT exact\n");
21 isl_map_print(map
, stdout
, 0, ISL_FORMAT_ISL
);
23 map
= isl_map_compute_divs(map
);
24 map
= isl_map_coalesce(map
);
25 printf("# coalesced\n");
26 isl_map_print(map
, stdout
, 0, ISL_FORMAT_ISL
);